mirror of
https://gitee.com/dromara/dax-pay.git
synced 2025-10-13 13:20:23 +00:00
fix: 分账自动完结数据库字段不存在
This commit is contained in:
@@ -573,6 +573,7 @@ CREATE TABLE `pay_alloc_config` (
|
|||||||
`deleted` tinyint(1) NOT NULL COMMENT '删除标志',
|
`deleted` tinyint(1) NOT NULL COMMENT '删除标志',
|
||||||
`app_id` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '应用号',
|
`app_id` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '应用号',
|
||||||
`auto_alloc` tinyint(1) NULL DEFAULT NULL COMMENT '开启自动分账',
|
`auto_alloc` tinyint(1) NULL DEFAULT NULL COMMENT '开启自动分账',
|
||||||
|
`auto_finish` tinyint(1) NULL DEFAULT NULL COMMENT '开启自动完结',
|
||||||
`min_amount` decimal(10, 2) NULL DEFAULT NULL COMMENT '分账起始额',
|
`min_amount` decimal(10, 2) NULL DEFAULT NULL COMMENT '分账起始额',
|
||||||
`delay_time` datetime NULL DEFAULT NULL COMMENT '分账延迟时长(分钟)',
|
`delay_time` datetime NULL DEFAULT NULL COMMENT '分账延迟时长(分钟)',
|
||||||
PRIMARY KEY (`id`) USING BTREE
|
PRIMARY KEY (`id`) USING BTREE
|
||||||
|
@@ -27,7 +27,7 @@ public class AllocConfig extends MchAppBaseEntity implements ToResult<AllocConfi
|
|||||||
/** 是否自动分账 */
|
/** 是否自动分账 */
|
||||||
private Boolean autoAlloc;
|
private Boolean autoAlloc;
|
||||||
|
|
||||||
/** 自动完结 */
|
/** 是否自动完结 */
|
||||||
private Boolean autoFinish;
|
private Boolean autoFinish;
|
||||||
|
|
||||||
/** 分账起始额 */
|
/** 分账起始额 */
|
||||||
|
Reference in New Issue
Block a user