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/11
|
*/
|
@ApiModel(value = "还款试算接口Dto")
|
@Data
|
public class YxPreRepayApplyDto {
|
|
@ApiModelProperty(value = "提前还款类型-正常还款")
|
public static final Integer TYPE_NORMAL = 2;
|
@ApiModelProperty(value = "提前还款类型-提前结清")
|
public static final Integer TYPE_CLEAN = 3;
|
|
@ApiModelProperty(value = "用户Id")
|
private Long userId;
|
|
@ApiModelProperty(value = "贷款编号")
|
private String loanNo;
|
|
@ApiModelProperty(value = "提前还款类型")
|
private Integer prePayType;
|
|
@ApiModelProperty(value = "期数")
|
private String term;
|
|
}
|