chenjiahe
2024-03-20 422e6d3b1330d15ac391a73ac0c1ca6ff6f87425
Merge branch 'master-prod-new' into master-test
2个文件已修改
16 ■■■■ 已修改文件
phis-feign/src/main/java/com/hz/his/vo/label/LabelTypeVo.java 9 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
phis-feign/src/main/java/com/hz/his/vo/label/LabelVo.java 7 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
phis-feign/src/main/java/com/hz/his/vo/label/LabelTypeVo.java
@@ -16,6 +16,11 @@
    /**标签分类名称*/
    private String name;
    /**选择值数量,不填无限制*/
    private Integer selectValue;
    /**可自定义标签:0否1是*/
    private Integer customRule;
    /**标签集合*/
    private List<LabelVo> labelList;
    /**子类*/
@@ -25,8 +30,10 @@
    public LabelTypeVo() {
    }
    public LabelTypeVo(String id, String name) {
    public LabelTypeVo(String id, String name,Integer selectValue,Integer customRule) {
        this.id = id;
        this.name = name;
        this.selectValue = selectValue;
        this.customRule = customRule;
    }
}
phis-feign/src/main/java/com/hz/his/vo/label/LabelVo.java
@@ -11,8 +11,10 @@
@Data
public class LabelVo {
    /**标签标识*/
    /**用户标签标识*/
    private String id;
    /**标签标识*/
    private String labelId;
    /**标签名称*/
    private String name;
    /**是否自定义标签:0否1是*/
@@ -26,8 +28,9 @@
        this.name = name;
    }
    public LabelVo(String id, String name, Integer isCustom) {
    public LabelVo(String id,String labelId, String name, Integer isCustom) {
        this.id = id;
        this.labelId = labelId;
        this.name = name;
        this.isCustom = isCustom;
    }