chenjiahe
2024-03-19 9314ee848f4e8276f9f9be97e1720f3dbd1f5a29
phis-feign/src/main/java/com/hz/his/vo/label/LabelVo.java
@@ -15,6 +15,8 @@
    private String id;
    /**标签名称*/
    private String name;
    /**是否自定义标签:0否1是*/
    private Integer isCustom;
    public LabelVo() {
    }
@@ -23,4 +25,10 @@
        this.id = id;
        this.name = name;
    }
    public LabelVo(String id, String name, Integer isCustom) {
        this.id = id;
        this.name = name;
        this.isCustom = isCustom;
    }
}