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;
|
}
|