From 144c338972a056260f7314ba9bce9522453a98ee Mon Sep 17 00:00:00 2001 From: Jerry Yan <792602257@qq.com> Date: Wed, 17 Dec 2025 17:53:09 +0800 Subject: [PATCH] =?UTF-8?q?feat(profitshare):=20=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E6=8E=A5=E6=94=B6=E4=BA=BAID=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在CreateRecipientRequest类中新增id字段 - 支持接收人唯一标识的传递 - 完善接收人创建请求的数据结构 --- .../profitshare/dto/rule/CreateRecipientRequest.java | 2 ++ 1 file changed, 2 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 fe78d199..26209b80 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 @@ -22,6 +22,8 @@ import java.util.Map; @JsonInclude(JsonInclude.Include.NON_NULL) public class CreateRecipientRequest { + private Integer id; + /** * 接收人名称 */