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