fwq
2024-04-11 e1972e6d92e6b57ecb65eb7998606e620d9f6811
phis-feign/src/main/java/com/hz/his/vo/label/LabelTypeVo.java
New file
@@ -0,0 +1,39 @@
package com.hz.his.vo.label;
import lombok.Data;
import java.util.ArrayList;
import java.util.List;
/**
 * @author CJH
 */
@Data
public class LabelTypeVo {
    /**标签分类标识*/
    private String id;
    /**标签分类名称*/
    private String name;
    /**选择值数量,不填无限制*/
    private Integer selectValue;
    /**可自定义标签:0否1是*/
    private Integer customRule;
    /**标签集合*/
    private List<LabelVo> labelList;
    /**子类*/
    private List<LabelTypeVo> childList = new ArrayList<>();
    public LabelTypeVo() {
    }
    public LabelTypeVo(String id, String name,Integer selectValue,Integer customRule) {
        this.id = id;
        this.name = name;
        this.selectValue = selectValue;
        this.customRule = customRule;
    }
}