chenjiahe
2024-03-21 0e1b9299d32233d55d5e69b7508842e1fa385442
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package com.hz.his.vo.label;
 
import lombok.Data;
 
import java.util.ArrayList;
import java.util.List;
 
/**
 * @author CJH
 */
@Data
public class LabelTypeAddVo {
 
    /**标签分类标识*/
    private String id;
    /**标签分类名称*/
    private String name;
 
    /**选择值数量,不填无限制*/
    private Integer selectValue;
    /**可自定义标签:0否1是*/
    private Integer customRule;
 
    /**子类*/
    private LabelTypeAddVo child;
 
 
    public LabelTypeAddVo() {
    }
 
    public LabelTypeAddVo(String id, String name, Integer selectValue, Integer customRule) {
        this.id = id;
        this.name = name;
        this.selectValue = selectValue;
        this.customRule = customRule;
    }
}