first commit

This commit is contained in:
2026-08-26 14:25:17 +08:00
commit 06debfd1fc
10595 changed files with 1836924 additions and 0 deletions
@@ -0,0 +1,7 @@
-- 体育活动增加模板设置状态,并根据现有工作模板回填历史数据。
ALTER TABLE `activity_school`
ADD COLUMN `templateStatus` tinyint(1) NOT NULL DEFAULT 0 COMMENT '模板设置状态 0.未设置 1.已设置' AFTER `isSave`;
UPDATE `activity_school` school
INNER JOIN `sys_home_template` template ON template.`id` = school.`id`
SET school.`templateStatus` = 1;