chenjiahe
2024-05-22 0e50884553dd11fa72101f23ac51143c9f98a871
提交 | 用户 | age
a8ccd0 1 package com.hz.his.vo.label;
C 2
3 import lombok.Data;
4
5 import java.util.ArrayList;
6 import java.util.List;
7
8 /**
9  * @author CJH
10  */
11 @Data
12 public class LabelTypeVo {
13
14     /**标签分类标识*/
15     private String id;
16     /**标签分类名称*/
17     private String name;
18
c9010a 19     /**选择值数量,不填无限制*/
C 20     private Integer selectValue;
21     /**可自定义标签:0否1是*/
22     private Integer customRule;
23
a8ccd0 24     /**标签集合*/
C 25     private List<LabelVo> labelList;
26     /**子类*/
27     private List<LabelTypeVo> childList = new ArrayList<>();
28
29
30     public LabelTypeVo() {
31     }
32
c9010a 33     public LabelTypeVo(String id, String name,Integer selectValue,Integer customRule) {
a8ccd0 34         this.id = id;
C 35         this.name = name;
c9010a 36         this.selectValue = selectValue;
C 37         this.customRule = customRule;
a8ccd0 38     }
C 39 }