1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package com.hz.his.vo.label;
|
| import lombok.Data;
|
| /**
| * @author CJH
| */
| @Data
| public class UserLabelInfoVo {
| /**用户标签标识*/
| private String id;
| /**是否自定义:0否1是-必填*/
| private Integer isCustom;
| /**系统标签标识-选填(isCustom是0必填)*/
| private String labelId;
| /**标签名称-选填(isCustom是1必填)*/
| private String labelName;
| }
|
|