feat:库融融资及还款接口新增摘要参数

main
tianhao 2026-07-16 14:52:52 +08:00
parent 69dbec51dc
commit 983ccc187c
3 changed files with 11 additions and 1 deletions

View File

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

View File

@ -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;
/** /**
* *
*/ */

View File

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