Sunshine
2024-11-04 177f10973fd9bc1f0930369bb086ad9f0053440c
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
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;
 
}