fwq
2022-07-22 f5bce1128a4b9c8ccc0eb636747d060ce93e3135
提交 | 用户 | age
f5bce1 1 package com.hz.his.dto.user.label;
7c680b 2
C 3 import lombok.Data;
4
f5bce1 5 /**
F 6  * 用户标签*/
7c680b 7 @Data
f5bce1 8 public class UserLabelDto {
7c680b 9
C 10     /**用户标识*/
11     private String userId;
12     /**类型*/
13     private Integer type;
14     /**分类标识*/
15     private String labelTypeId;
16     /**是否自定义*/
17     private Integer isCustom;
18
19     /**记录类型-印象标签*/
20     public static final int TYPE_IMPRESSION_LABEL = 0;
21     /**记录类型-评估记录*/
22     public static final int TYPE_ASSESSMENT_RECORD = 1;
23 }