package com.nova.sankuai.domain.api.yixin.dto;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
/**
|
* @author weikangdi
|
* @create 2022/5/12
|
*/
|
@ApiModel(value = "借款试算接口Dto")
|
@Data
|
public class YxTrialDto {
|
|
@ApiModelProperty(value = "贷款编号")
|
private String loanNo;
|
|
@ApiModelProperty(value = "授信编号")
|
private String creditNo;
|
|
@ApiModelProperty(value = "借款金额")
|
private String applyAmount;
|
|
@ApiModelProperty(value = "借款期数")
|
private Integer applyTerm;
|
|
@ApiModelProperty(value = "期限类型")
|
private String termType;
|
|
@ApiModelProperty(value = "用户编号")
|
private Long userId;
|
|
public YxTrialDto(String creditNo, String applyAmount, Integer applyTerm, String termType, Long userId) {
|
this.loanNo = creditNo;
|
this.creditNo = creditNo;
|
this.applyAmount = applyAmount;
|
this.applyTerm = applyTerm;
|
this.termType = termType;
|
this.userId = userId;
|
}
|
}
|