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