ab
2024-11-04 09d882262f530ded672f1c01fb65a1fefa00d52d
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
33
34
35
36
37
38
39
40
41
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;
    }
}