From b32fbdef4053a575699944a510d03cc50cde5a77 Mon Sep 17 00:00:00 2001 From: DaxPay Date: Thu, 6 Feb 2025 15:28:58 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=88=86=E8=B4=A6=E8=87=AA=E5=8A=A8?= =?UTF-8?q?=E5=AE=8C=E7=BB=93=E6=95=B0=E6=8D=AE=E5=BA=93=E5=AD=97=E6=AE=B5?= =?UTF-8?q?=E4=B8=8D=E5=AD=98=E5=9C=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- _config/mysql/dax-pay-single.sql | 1 + .../dromara/daxpay/service/entity/allocation/AllocConfig.java | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/_config/mysql/dax-pay-single.sql b/_config/mysql/dax-pay-single.sql index cb32c33c..444fb14b 100644 --- a/_config/mysql/dax-pay-single.sql +++ b/_config/mysql/dax-pay-single.sql @@ -573,6 +573,7 @@ CREATE TABLE `pay_alloc_config` ( `deleted` tinyint(1) 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_finish` tinyint(1) NULL DEFAULT NULL COMMENT '开启自动完结', `min_amount` decimal(10, 2) NULL DEFAULT NULL COMMENT '分账起始额', `delay_time` datetime NULL DEFAULT NULL COMMENT '分账延迟时长(分钟)', PRIMARY KEY (`id`) USING BTREE diff --git a/daxpay-single/daxpay-single-service/src/main/java/org/dromara/daxpay/service/entity/allocation/AllocConfig.java b/daxpay-single/daxpay-single-service/src/main/java/org/dromara/daxpay/service/entity/allocation/AllocConfig.java index f8ea29bf..821ccde5 100644 --- a/daxpay-single/daxpay-single-service/src/main/java/org/dromara/daxpay/service/entity/allocation/AllocConfig.java +++ b/daxpay-single/daxpay-single-service/src/main/java/org/dromara/daxpay/service/entity/allocation/AllocConfig.java @@ -27,7 +27,7 @@ public class AllocConfig extends MchAppBaseEntity implements ToResult