chore: 合并华为服务器最新代码前

This commit is contained in:
2025-11-22 09:09:40 +08:00
parent 0f47720f98
commit 2611162e60
3 changed files with 58 additions and 1 deletions

View File

@@ -4244,6 +4244,13 @@ create table if not exists lucky_cron
create index IDX_sys_cron_execute_time
on lucky_cron (execute_time);
-- 初始化计划任务
INSERT INTO lucky_cron (type, period, period_type, name, event, execute_time, relate_id, create_time) VALUES
(2, 2, 0, '店铺统计更新(按时)', 'CronStatShopHour', 1763487040, 0, 0),
(2, 2, 0, '门店统计更新(按时)', 'CronStatStoreHour', 1763487040, 0, 0),
(2, 2, 0, '店铺统计更新(按日)', 'CronStatShop', 1763487040, 0, 0),
(2, 2, 0, '门店统计更新(按日)', 'CronStatStore', 1763487040, 0, 0);
create table if not exists lucky_cron_log
(
id int(11) unsigned auto_increment