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