chenjiahe
2024-03-19 05147a63ef8626b70d51208261af7d0ba91c2aca
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;
    }
}