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