ANDRU-PC\Andru
2023-05-31 75e461ca4a28998c09626b29cf277bea3a006d4d
添加方法
2个文件已修改
16 ■■■■■ 已修改文件
phis-feign/src/main/java/com/hz/his/dto/user/UserParamDto.java 6 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
phis-feign/src/main/java/com/hz/his/feign/service/platform/SPhipUserService.java 10 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
phis-feign/src/main/java/com/hz/his/dto/user/UserParamDto.java
@@ -178,6 +178,9 @@
    /** 用户兴趣爱好json */
    private String userInterestsJson;
    /** 科室关系json */
    private String departmentJson;
    /** email */
    private String email;
@@ -230,6 +233,9 @@
    /** 搜索:用户创建时间(结束),格式:yyyy-MM-dd HH:mm:ss */
    private String createEndTime;
    public UserParamDto() {
    }
    /**性别-未知*/
    public static final Integer SEX_UNKNOWN = 0;
    /**性别-男*/
phis-feign/src/main/java/com/hz/his/feign/service/platform/SPhipUserService.java
@@ -85,5 +85,15 @@
    @PostMapping("/attention/product/record/edit")
    Result userAttentionProductRecordEdit(@RequestBody UserAttentionProductDto userAttentionProductDto);
    /**
     * 开放平台-获取用户科室关系信息
     */
    @PostMapping(value = "/user/families/room/info")
    Result getUserFamiliesRoomInfo(@RequestBody UserParamDto userParamDto);
    /**
     * 开放平台-修改用户科室关系信息
     */
    @PostMapping(value = "/families/room/info/update")
    Result updateUserFamiliesRoomInfo(@RequestBody UserParamDto userParamDto);
}