chenjiahe
2024-03-20 422e6d3b1330d15ac391a73ac0c1ca6ff6f87425
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 LabelVo {
 
    /**用户标签标识*/
    private String id;
    /**标签标识*/
    private String labelId;
    /**标签名称*/
    private String name;
    /**是否自定义标签:0否1是*/
    private Integer isCustom;
 
    public LabelVo() {
    }
 
    public LabelVo(String id, String name) {
        this.id = id;
        this.name = name;
    }
 
    public LabelVo(String id,String labelId, String name, Integer isCustom) {
        this.id = id;
        this.labelId = labelId;
        this.name = name;
        this.isCustom = isCustom;
    }
}