package com.nova.sankuai.domain.api.zzxf;
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
/**
|
* @Description 数据导入Vo
|
* @Author CWR
|
* @Date 2022/5/20 12:07
|
*/
|
@Data
|
public class ZzxfDataImportVo {
|
/**
|
* 姓名
|
*/
|
@ApiModelProperty(value = "姓名")
|
private String name;
|
|
/**
|
* 手机号
|
*/
|
@ApiModelProperty(value = "手机号")
|
private String mobile;
|
|
/**
|
* 年龄
|
*/
|
@ApiModelProperty(value = "年龄")
|
private Integer age;
|
|
/**
|
* 子渠道
|
*/
|
@ApiModelProperty(value = "子渠道")
|
@JsonProperty("child_source")
|
private String childSource;
|
|
/**
|
* 申请额度
|
*/
|
@ApiModelProperty(value = "申请额度")
|
@JsonProperty("money_demand")
|
private Integer moneyDemand;
|
|
/**
|
* 城市
|
*/
|
@ApiModelProperty(value = "城市")
|
private String city;
|
|
/**
|
* 是否有房(Y/N)
|
*/
|
@ApiModelProperty(value = "是否有房(Y/N)")
|
@JsonProperty("is_house")
|
private String isHouse;
|
|
/**
|
* 是否有车(Y/N)
|
*/
|
@ApiModelProperty(value = "是否有车(Y/N)")
|
@JsonProperty("is_car")
|
private String isCar;
|
|
/**
|
* 是否有保险单(Y/N)
|
*/
|
@ApiModelProperty(value = "是否有保险单(Y/N)")
|
@JsonProperty("is_insurance")
|
private String isInsurance;
|
|
/**
|
* 是否有公积金(Y/N)
|
*/
|
@ApiModelProperty(value = "是否有公积金(Y/N)")
|
@JsonProperty("is_fund")
|
private String isFund;
|
|
/**
|
* 是否有社保(Y/N)
|
*/
|
@ApiModelProperty(value = "是否有社保(Y/N)")
|
@JsonProperty("is_social")
|
private String isSocial;
|
|
/**
|
* 企业是否有纳税(Y/N)
|
*/
|
@ApiModelProperty(value = "企业是否有纳税(Y/N)")
|
@JsonProperty("is_tax")
|
private String isTax;
|
|
/**
|
* 企业是否有开票(Y/N)
|
*/
|
@ApiModelProperty(value = "企业是否有开票(Y/N)")
|
@JsonProperty("is_invoice")
|
private String isInvoice;
|
|
/**
|
* 身份证号
|
*/
|
@ApiModelProperty(value = "身份证号")
|
private String idcard;
|
|
/**
|
* 花呗额度
|
*/
|
@ApiModelProperty(value = "花呗额度")
|
private Integer huabei;
|
|
/**
|
* 芝麻分
|
*/
|
@ApiModelProperty(value = "芝麻分")
|
private Integer zhimascore;
|
|
/**
|
* 白条
|
*/
|
@ApiModelProperty(value = "白条")
|
private Integer baitiao;
|
|
/**
|
* 额外字段,方法如下:Base64Encode(开票:100万,纳税:1000万)
|
*/
|
@ApiModelProperty(value = "额外字段,方法如下:Base64Encode(开票:100万,纳税:1000万)")
|
private String ext1;
|
|
}
|