Browse Source

代码调整

wangliang 1 year ago
parent
commit
4932ee00d1
1 changed files with 18 additions and 1 deletions
  1. 18 1
      distributed-print-business/src/main/resources/db/log/wangliang.sql

+ 18 - 1
distributed-print-business/src/main/resources/db/log/wangliang.sql

@@ -1,3 +1,4 @@
+-- 2024-06-10
 ALTER TABLE t_c_final_score ADD culture_program_id BIGINT
     COMMENT '培养方案id' NULL after id;
 
@@ -8,4 +9,20 @@ ALTER TABLE t_c_usual_score ADD culture_program_id BIGINT
     COMMENT '培养方案id' NULL after id;
 
 ALTER TABLE t_r_basic_info ADD culture_program_id BIGINT
-    COMMENT '培养方案id' NULL after id;
+    COMMENT '培养方案id' NULL after id;
+
+-- 2024-06-12
+UPDATE sys_privilege
+SET name='达成度统计', url='DegreeManage', `type`='MENU', parent_id=2000, `sequence`=2, property=NULL, related=NULL, enable=1, default_auth=0, front_display=1
+WHERE id=1999;
+
+INSERT INTO sys_privilege
+(id, name, url, `type`, parent_id, `sequence`, property, related, enable, default_auth, front_display)
+VALUES(2100, '基础数据', 'BasicDataManage', 'MENU', 2000, 3, NULL, NULL, 1, 0, 1);
+
+UPDATE sys_privilege
+SET name='成绩管理', url='TargetScoreManage', `type`='MENU', parent_id=2100, `sequence`=1, property=NULL, related='2003,2004,2005', enable=1, default_auth=0, front_display=1
+WHERE id=2001;
+UPDATE sys_privilege
+SET name='课程目标达成度统计', url='TargetReportManage', `type`='MENU', parent_id=1999, `sequence`=2, property=NULL, related='2021,2022,2023', enable=1, default_auth=0, front_display=1
+WHERE id=2002;