Air
2024-11-04 29c405353029f033e187e8dc033b93385365ee43
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
42
43
44
package com.nova.sankuai.domain.api.yixin.response;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * 审批查询
 * @author weikangdi
 */
@Data
@ApiModel("宜信额度查询")
public class YXCreditLimitResponse extends YXResponse {
 
    @ApiModelProperty(value = "总额度")
    private String totalCredit;
 
    @ApiModelProperty(value = "已用额度")
    private String usedCredit;
 
    @ApiModelProperty(value = "可用额度")
    private String usableCredit;
 
    @ApiModelProperty(value = "生效时间")
    private String effectiveDate;
 
    @ApiModelProperty(value = "额度失效日期")
    private String subExpDate;
 
    @ApiModelProperty(value = "额度状态")
    private String creditStatus;
 
    @ApiModelProperty(value = "额度描述")
    private String creditDes;
 
    @ApiModelProperty(value = "冻结时间(yyyy-MM-dd HH:mm:ss),冻结时间过后可提交授信")
    private String freezeTime;
 
    @ApiModelProperty(value = "支持的借款期数")
    private String supportPeriods;
 
    @ApiModelProperty(value = "起借金额")
    private String startLoanAmount;
}