package com.nova.sankuai.domain.api.zhongan;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
/**
|
* <p>
|
* description
|
* </p>
|
*
|
* @author denglb 2021/11/15
|
*/
|
@Data
|
public class DuolaiDto {
|
private String outerCreditApplyNo;
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Date creditApplyTime;
|
private String name;
|
private String certiType;
|
private String certiNo;
|
private String mobile;
|
private String certFrontImageId;
|
private String certBackImageId;
|
private String faceReconImageId;
|
private BigDecimal applyAmount;
|
private OcrInfoDto ocrInfoDto;
|
private DebitCardInfo debitCardInfo;
|
private OtherCreditInfo otherCreditInfo;
|
private String productCode;
|
private String channelNo;
|
private String thirdUserNo;
|
private String apiName;
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Date reqDate;
|
private String reqNo;
|
}
|