phis-feign/src/main/java/com/hz/his/feign/service/platform/SPhipUserLabelService.java | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
phis-feign/src/main/java/com/hz/his/vo/label/LabelVo.java | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
phis-feign/src/main/java/com/hz/his/vo/label/UserLabelInfoVo.java | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 |
phis-feign/src/main/java/com/hz/his/feign/service/platform/SPhipUserLabelService.java
New file @@ -0,0 +1,27 @@ package com.hz.his.feign.service.platform; import com.hx.resultTool.Result; import com.hz.his.dto.marketing.common.MarketingTotalDto; import com.hz.his.dto.user.*; import com.hz.his.dto.user.coupon.UserCouponDto; import com.hz.his.dto.user.project.UserProjectDto; import com.hz.his.dto.user.room.UserDoctorRoomDto; import com.hz.his.vo.label.UserLabelVo; import net.sf.json.JSONObject; import org.springframework.cloud.openfeign.FeignClient; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestBody; /** * 这里这个name 需要填写 请求的服务提供者的注册到nacos Server上面的服务名,path 是请求接口前缀 */ @FeignClient(name="phi-platform-service",path = "/phip",contextId = "phip-user-label") public interface SPhipUserLabelService { /** * 开放平台-获取用户标签列表 */ @PostMapping(value = "/label/user/v2/add") Result add(@RequestBody UserLabelVo userLabelVo); } phis-feign/src/main/java/com/hz/his/vo/label/LabelVo.java
@@ -13,8 +13,10 @@ /**用户标签标识*/ private String id; /**标签标识*/ /**系统标签标识*/ private String labelId; /**系统标签分类标识*/ private String labelTypeId; /**标签名称*/ private String name; /**是否自定义标签:0否1是*/ @@ -28,8 +30,9 @@ this.name = name; } public LabelVo(String id,String labelId, String name, Integer isCustom) { public LabelVo(String id,String labelTypeId,String labelId, String name, Integer isCustom) { this.id = id; this.labelTypeId = labelTypeId; this.labelId = labelId; this.name = name; this.isCustom = isCustom; phis-feign/src/main/java/com/hz/his/vo/label/UserLabelInfoVo.java
@@ -7,10 +7,12 @@ */ @Data public class UserLabelInfoVo { /**用户标签标识*/ private String id; /**是否自定义:0否1是-必填*/ private Integer isCustom; /**系统标签标识-选填(isCustom是0必填)*/ private String labelId; /**标签标识-选填(isCustom是1必填)*/ /**标签名称-选填(isCustom是1必填)*/ private String labelName; }