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; }