feat 微信分账调试

This commit is contained in:
DaxPay
2024-12-16 18:09:52 +08:00
parent 13c28069ec
commit d0bab54db5
8 changed files with 122 additions and 17 deletions

View File

@@ -26,9 +26,15 @@ public class AllocConfig extends MchAppBaseEntity implements ToResult<AllocConfi
/** 是否自动分账 */
private Boolean autoAlloc;
/** 自动完结 */
private Boolean autoFinish;
/** 分账起始额 */
private BigDecimal minAmount;
/** 分账延迟时长(分钟) */
private Integer delayTime;
/**
* 创建对象

View File

@@ -24,10 +24,19 @@ public class AllocConfigParam {
@Schema(description = "是否自动分账")
private Boolean autoAlloc;
/** 自动完结 */
@Schema(description = "自动完结")
private Boolean autoFinish;
/** 分账起始额 */
@Schema(description = "分账起始额")
private BigDecimal minAmount;
/** 分账延迟时长(分钟) */
@Schema(description = "分账延迟时长(分钟)")
private Integer delayTime;
/** 应用AppId */
@Schema(description = "应用AppId")
private String appId;

View File

@@ -24,4 +24,12 @@ public class AllocConfigResult extends MchAppResult {
@Schema(description = "分账起始额")
private BigDecimal minAmount;
/** 自动完结 */
@Schema(description = "是否自动完结")
private Boolean autoFinish;
/** 分账延迟时长(分钟) */
@Schema(description = "分账延迟时长(分钟)")
private Integer delayTime;
}