mirror of
https://gitee.com/dromara/dax-pay.git
synced 2025-10-13 21:30:25 +00:00
feat 微信分账调试
This commit is contained in:
@@ -26,9 +26,15 @@ public class AllocConfig extends MchAppBaseEntity implements ToResult<AllocConfi
|
||||
/** 是否自动分账 */
|
||||
private Boolean autoAlloc;
|
||||
|
||||
/** 自动完结 */
|
||||
private Boolean autoFinish;
|
||||
|
||||
/** 分账起始额 */
|
||||
private BigDecimal minAmount;
|
||||
|
||||
/** 分账延迟时长(分钟) */
|
||||
private Integer delayTime;
|
||||
|
||||
|
||||
/**
|
||||
* 创建对象
|
||||
|
@@ -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;
|
||||
|
||||
|
@@ -24,4 +24,12 @@ public class AllocConfigResult extends MchAppResult {
|
||||
|
||||
@Schema(description = "分账起始额")
|
||||
private BigDecimal minAmount;
|
||||
|
||||
/** 自动完结 */
|
||||
@Schema(description = "是否自动完结")
|
||||
private Boolean autoFinish;
|
||||
|
||||
/** 分账延迟时长(分钟) */
|
||||
@Schema(description = "分账延迟时长(分钟)")
|
||||
private Integer delayTime;
|
||||
}
|
||||
|
Reference in New Issue
Block a user