feat(profitshare): 添加支付分账调用配置字段

- 在CreateRecipientRequest中新增needPaymentCall字段
- 用于控制是否需要调用支付分账接口
- 字段类型为Integer,支持空值处理
- 添加对应的JSON序列化注解
- 更新实体类文档注释说明用途
This commit is contained in:
2025-12-16 17:23:38 +08:00
parent c1f35e1f3a
commit a9555d612a

View File

@@ -75,4 +75,10 @@ public class CreateRecipientRequest {
*/
@JsonProperty("ext_config")
private Map<String, Object> extConfig;
/**
* 是否需要调支付分账
*/
@JsonProperty("need_payment_call")
private Integer needPaymentCall;
}