ab
2024-11-05 bead00668eebce8d39d027515d564376de2f5978
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
48
49
50
51
52
53
54
55
56
57
58
package com.nova.sankuai.domain.dto.zcy;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@ApiModel(value = "中诚易DTO")
@Data
public class ZcyCallbackRequestDTO {
    @ApiModelProperty(value = "渠道号")
    private  String channel;
 
    @ApiModelProperty(value = "手机号")
    private  String mobile;
 
    @ApiModelProperty(value = "性别 1男 2女")
    private Integer gender;
 
    @ApiModelProperty(value = "姓名")
    private  String name;
 
    @ApiModelProperty(value = "年龄")
    private  Integer age;
 
    @ApiModelProperty(value = "城市")
    private  String city;
 
    @ApiModelProperty(value = "城市编码")
    private  String cityCode;
 
    @ApiModelProperty(value = "需求金额 1->2万以内; 2->2-5万; 3->6-10万; 4->11-20万")
    private  Integer amount;
 
    @ApiModelProperty(value = "职业类型 1->上班族; 2->企业主(有营业执照); 3->自由职业")
    private  Integer vocation;
 
    @ApiModelProperty(value = "本地社保 1->未交或已断; 2->连续未满六个月; 3->连续六个月以上")
    private  Integer socialInsurance;
 
    @ApiModelProperty(value = "本地公积金 1->未交或已断; 2->连续未满六个月; 3->连续六个月以上")
    private  Integer accumulationFund;
 
    @ApiModelProperty(value = "本人房产 1->无; 2->有按揭房; 3->有全款房")
    private  Integer house;
 
    @ApiModelProperty(value = "本人车产 1->无; 2->有按揭车; 3->有全款车")
    private  Integer car;
 
    @ApiModelProperty(value = "芝麻分 1->550以下; 2->550-600; 3->601-650; 4->651-700; 5->700以上;")
    private  Integer sesame;
 
    @ApiModelProperty(value = "花呗额度 1->无花呗; 2->5000以下; 3->5001-10000; 4->10001-20000; 5->20000以上")
    private  Integer huaBei;
 
    @ApiModelProperty(value = "信用记录 1->信用良好无逾期; 2->近1年内网贷或信用卡逾期少于3次; 3->近1年内网贷或信用卡逾期超过3次")
    private  Integer creditRecord;
 
}