chenjiahe
2022-07-13 7c680b3e59d8b46fa4797f283101476917fa44c6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.hz.phis.dt.user.label;
 
import lombok.Data;
 
import java.math.BigDecimal;
 
/**用户标签*/
@Data
public class UserLabelDt {
 
    /**用户标识*/
    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;
}