feat:贷款还款信息查询V2返回参数少字段修复
parent
171bd30562
commit
e90210ac79
|
|
@ -47,6 +47,56 @@ public class ApplyQueryV2Response implements ApiResponse {
|
|||
|
||||
@Data
|
||||
public static class RecodeList implements Serializable {
|
||||
/**
|
||||
* 贷款类型
|
||||
*/
|
||||
@SerializedName("loantp")
|
||||
private String loantp;
|
||||
/**
|
||||
* 本月应还本金
|
||||
*/
|
||||
@SerializedName("crnrpyblamtb")
|
||||
private BigDecimal crnrpyblamtb;
|
||||
/**
|
||||
* 本月应还利息
|
||||
*/
|
||||
@SerializedName("crnrpyblamtl")
|
||||
private BigDecimal crnrpyblamtl;
|
||||
/**
|
||||
* 剩余本金
|
||||
*/
|
||||
@SerializedName("rmanpnpamt")
|
||||
private BigDecimal rmanpnpamt;
|
||||
/**
|
||||
* 还款日
|
||||
*/
|
||||
@SerializedName("rpybldt")
|
||||
private String rpybldt;
|
||||
/**
|
||||
* 合同编号
|
||||
*/
|
||||
@SerializedName("ctrno")
|
||||
private String ctrno;
|
||||
/**
|
||||
* 贷款账号
|
||||
*/
|
||||
@SerializedName("loanacctno")
|
||||
private String loanacctno;
|
||||
/**
|
||||
* 贷款账号序号
|
||||
*/
|
||||
@SerializedName("acctseqno")
|
||||
private String acctseqno;
|
||||
/**
|
||||
* 币种
|
||||
*/
|
||||
@SerializedName("buyexgccycd")
|
||||
private String buyexgccycd;
|
||||
/**
|
||||
* 年利率
|
||||
*/
|
||||
@SerializedName("yrintrate")
|
||||
private BigDecimal yrintrate;
|
||||
/**
|
||||
* 贷款状态(0、开户,1、正常,2、逾期,3、结清,4、销户,5、申报核销,6、部分核销,7、全部核销)
|
||||
*/
|
||||
|
|
|
|||
Loading…
Reference in New Issue