feat 分账限制, 优化一系列分账相关的逻辑

This commit is contained in:
DaxPay
2024-05-29 18:19:10 +08:00
parent a773c520d1
commit ffa0232f20
28 changed files with 141 additions and 80 deletions

View File

@@ -45,7 +45,7 @@
<java.version>1.8</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<logback-classic.version>1.2.7</logback-classic.version>
<hutool.version>5.8.25</hutool.version>
<hutool.version>5.8.27</hutool.version>
<lombok.version>1.18.30</lombok.version>
<junit.version>4.13.2</junit.version>
</properties>

View File

@@ -18,9 +18,6 @@ public class AllocReceiverModel {
/** 分账接收方编号, 需要保证唯一 */
private String receiverNo;
/** 账号别名 */
private String name;
/**
* 所属通道
* @see PayChannelEnum

View File

@@ -25,9 +25,6 @@ public class AllocReceiverAddParam extends DaxPayRequest<AllocReceiverAddModel>
/** 接收者编号 */
private String receiverNo;
/** 账号别名 */
private String name;
/**
* 所属通道
* @see PayChannelEnum

View File

@@ -44,7 +44,6 @@ public class AllocationReceiverTest {
param.setRelationType("user");
param.setRelationName("测试");
param.setReceiverNo("123456");
param.setName("测试");
param.setReceiverType("user");
param.setReceiverAccount("123456");
DaxPayResult<AllocReceiverAddModel> execute = DaxPayKit.execute(param);