MyUser.java
1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package com.lhcredit.project.webbusiness.domain;
import com.lhcredit.framework.web.domain.BaseEntity;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.util.Date;
@Data
@ApiModel(value = "我的")
public class MyUser extends BaseEntity {
private static final long serialVersionUID=1L;
/** 用户ID */
@ApiModelProperty(value = "用户ID")
private String userId;
/** 手机号码 */
@ApiModelProperty(value = "手机号码")
private String phonenumber;
/** 主键 */
@ApiModelProperty(value = "主键")
private String scoreId;
/** 分数 */
@ApiModelProperty(value = "分数")
private String score;
/** 风险类型 */
@ApiModelProperty(value = "风险类型")
private String riskType;
/** 分值区间 */
@ApiModelProperty(value = "分值区间")
private String scoreField;
/** 风险等级 */
@ApiModelProperty(value = "风险等级")
private String riskLevel;
/** 是否手机认证 */
@ApiModelProperty(value = "是否手机认证")
private String ifphone;
/** 是否进行过测试 */
@ApiModelProperty(value = "是否进行过测试")
private String iftest;
/** 是否为合格投资者 */
@ApiModelProperty(value = "是否为合格投资者")
private String ifInvest;
}