fwq
2024-04-24 1b6aaa7d6c379ccdb0870a36f848c1f811577bf0
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;
    }
}