chenjiahe
2024-03-21 0e1b9299d32233d55d5e69b7508842e1fa385442
提交 | 用户 | age
d151b5 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 LabelTypeAddVo {
13
14     /**标签分类标识*/
15     private String id;
16     /**标签分类名称*/
17     private String name;
18
19     /**选择值数量,不填无限制*/
20     private Integer selectValue;
21     /**可自定义标签:0否1是*/
22     private Integer customRule;
23
24     /**子类*/
25     private LabelTypeAddVo child;
26
27
28     public LabelTypeAddVo() {
29     }
30
31     public LabelTypeAddVo(String id, String name, Integer selectValue, Integer customRule) {
32         this.id = id;
33         this.name = name;
34         this.selectValue = selectValue;
35         this.customRule = customRule;
36     }
37 }