chenjiahe
2024-03-20 552e24ec149b29b3b18d3c136e7c8b1bcc1d5d78
提交 | 用户 | 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 LabelVo {
13
c9010a 14     /**用户标签标识*/
a8ccd0 15     private String id;
552e24 16     /**系统标签标识*/
c9010a 17     private String labelId;
552e24 18     /**系统标签分类标识*/
C 19     private String labelTypeId;
a8ccd0 20     /**标签名称*/
C 21     private String name;
9314ee 22     /**是否自定义标签:0否1是*/
C 23     private Integer isCustom;
a8ccd0 24
C 25     public LabelVo() {
26     }
27
28     public LabelVo(String id, String name) {
29         this.id = id;
30         this.name = name;
31     }
9314ee 32
552e24 33     public LabelVo(String id,String labelTypeId,String labelId, String name, Integer isCustom) {
9314ee 34         this.id = id;
552e24 35         this.labelTypeId = labelTypeId;
c9010a 36         this.labelId = labelId;
9314ee 37         this.name = name;
C 38         this.isCustom = isCustom;
39     }
a8ccd0 40 }