feat(wechat): 实现微信分账 V2 和 V3 接口, 修复微信支付 v2 接口设置分账不生效问题

This commit is contained in:
bootx
2024-12-16 22:48:32 +08:00
parent d0bab54db5
commit f85eca4296
10 changed files with 239 additions and 32 deletions

View File

@@ -28,6 +28,9 @@ public class AllocDetail extends MchAppBaseEntity implements ToResult<AllocDetai
/** 分账订单ID */
private Long allocationId;
/** 外部明细ID */
private String outDetailId;
/** 接收者ID */
private Long receiverId;

View File

@@ -32,6 +32,10 @@ public class AllocDetailVo extends MchAppResult implements TransPojo {
@Schema(description = "分账订单ID")
private Long allocationId;
/** 外部明细ID */
@Schema(description = "外部明细ID")
private String outDetailId;
@Schema(description = "分账接收方编号")
private String receiverNo;