chenjiahe
2024-03-20 552e24ec149b29b3b18d3c136e7c8b1bcc1d5d78
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;