feat:库融融资及还款接口新增摘要参数
parent
69dbec51dc
commit
983ccc187c
|
|
@ -101,7 +101,7 @@ public interface ApiClient {
|
||||||
String bodyCiphertext = requestJson.get("body").getAsString();
|
String bodyCiphertext = requestJson.get("body").getAsString();
|
||||||
// 对称解密后body 明文
|
// 对称解密后body 明文
|
||||||
String bodyPlain = getProfile().getPrivacy().getSecretCipher().decrypt(Strings.toBytes(secretKeyPlain), Strings.toBytes(bodyCiphertext));
|
String bodyPlain = getProfile().getPrivacy().getSecretCipher().decrypt(Strings.toBytes(secretKeyPlain), Strings.toBytes(bodyCiphertext));
|
||||||
// 支持返回String
|
// T支持返回String
|
||||||
return requestClass == String.class ? requestClass.cast(bodyPlain) : Json.fromJson(bodyPlain, requestClass);
|
return requestClass == String.class ? requestClass.cast(bodyPlain) : Json.fromJson(bodyPlain, requestClass);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -90,6 +90,11 @@ public class InventoryOrderCreditPayRequest extends OrderBaseRequest implements
|
||||||
*/
|
*/
|
||||||
@SerializedName("pay_amount")
|
@SerializedName("pay_amount")
|
||||||
private BigDecimal payAmount;
|
private BigDecimal payAmount;
|
||||||
|
/**
|
||||||
|
* 摘要
|
||||||
|
*/
|
||||||
|
@SerializedName("remark")
|
||||||
|
private String remark;
|
||||||
/**
|
/**
|
||||||
* 验证码
|
* 验证码
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -33,4 +33,9 @@ public class InventoryOrderCreditRepayRequest extends OrderBaseRequest implement
|
||||||
*/
|
*/
|
||||||
@SerializedName("repay_amount_bj")
|
@SerializedName("repay_amount_bj")
|
||||||
private BigDecimal repayAmountBj;
|
private BigDecimal repayAmountBj;
|
||||||
|
/**
|
||||||
|
* 摘要
|
||||||
|
*/
|
||||||
|
@SerializedName("remark")
|
||||||
|
private String remark;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue