From a9555d612af268655cdb10aa0cff6eac2859b497 Mon Sep 17 00:00:00 2001 From: Jerry Yan <792602257@qq.com> Date: Tue, 16 Dec 2025 17:23:38 +0800 Subject: [PATCH] =?UTF-8?q?feat(profitshare):=20=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E6=94=AF=E4=BB=98=E5=88=86=E8=B4=A6=E8=B0=83=E7=94=A8=E9=85=8D?= =?UTF-8?q?=E7=BD=AE=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在CreateRecipientRequest中新增needPaymentCall字段 - 用于控制是否需要调用支付分账接口 - 字段类型为Integer,支持空值处理 - 添加对应的JSON序列化注解 - 更新实体类文档注释说明用途 --- .../profitshare/dto/rule/CreateRecipientRequest.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/main/java/com/ycwl/basic/integration/profitshare/dto/rule/CreateRecipientRequest.java b/src/main/java/com/ycwl/basic/integration/profitshare/dto/rule/CreateRecipientRequest.java index 95248a91..fe78d199 100644 --- a/src/main/java/com/ycwl/basic/integration/profitshare/dto/rule/CreateRecipientRequest.java +++ b/src/main/java/com/ycwl/basic/integration/profitshare/dto/rule/CreateRecipientRequest.java @@ -75,4 +75,10 @@ public class CreateRecipientRequest { */ @JsonProperty("ext_config") private Map extConfig; + + /** + * 是否需要调支付分账 + */ + @JsonProperty("need_payment_call") + private Integer needPaymentCall; }