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