sunshine
2024-11-05 53bd8a8d8184b3f19695b756ee78f343cdb9b9b9
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
47
package com.nova.sankuai.domain.api.yangqianguan.vo;
 
import com.fasterxml.jackson.annotation.JsonProperty;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @Description 基本信息
 * @Author CWR
 * @Date 2022/4/27 20:37
 */
@Data
@ApiModel(value = "授信申请-基本信息")
public class BasicInfoVo {
    @ApiModelProperty(value = "授信编号")
    @JsonProperty("credit_no")
    private String creditNo;
 
    @ApiModelProperty(value = "用户编号")
    @JsonProperty("user_id")
    private String userId;
 
    @ApiModelProperty(value = "产品ID")
    @JsonProperty("product_id")
    private String productId;
 
    @ApiModelProperty(value = "手机号码")
    private String mobile;
 
    @ApiModelProperty(value = "用户姓名")
    @JsonProperty("user_name")
    private String userName;
 
    @ApiModelProperty(value = "身份证号")
    @JsonProperty("identity_number")
    private String identityNumber;
 
    @ApiModelProperty(value = "授信申请时间 单位:毫秒")
    @JsonProperty("credit_time")
    private Long creditTime;
 
    @ApiModelProperty(value = "是否同意所有协议 0-不同意,1-同意")
    @JsonProperty("contract_agree")
    private Integer contractAgree;
 
}