|
@@ -1364,4 +1364,14 @@ update pc_company set RegisteredCapitalType =1
|
|
|
-- 2024-6-19 求职人员服务跟进权限字典码与权限赋值
|
|
|
insert into sys_function_code values ('T01030108', '服务跟进', 'T010301', 8);
|
|
|
insert into sys_role_sys_function_code (`RoleID`, `FunctionCode`) values('20afde90-a81a-11ed-a6c5-7085c2a9999e','T01030108');
|
|
|
-insert into sys_role_sys_function_code (`RoleID`, `FunctionCode`) values('10a12f77-0958-4220-b9ce-07b9215046f2','T01030108');
|
|
|
+insert into sys_role_sys_function_code (`RoleID`, `FunctionCode`) values('10a12f77-0958-4220-b9ce-07b9215046f2','T01030108');
|
|
|
+
|
|
|
+-- 2024-6-24 系统年度使用情况统计菜单与权限
|
|
|
+INSERT INTO sys_function_code VALUES ('T010505', '系统年度使用情况统计', 'T0105', 5);
|
|
|
+INSERT INTO `sys_menu` VALUES ('T010505', 5, '系统年度使用情况统计', NULL, 'views/statistics/YearSystemApplyCount', '/yearSystemApplyCount', 'T0105', NULL, 0, 1, 1, 'T010505', 1, NULL,NULL);
|
|
|
+insert into sys_role_sys_function_code (`RoleID`, `FunctionCode`) values('20afde90-a81a-11ed-a6c5-7085c2a9999e','T010505');
|
|
|
+-- 2024-6-25 日志表增加字段
|
|
|
+ALTER TABLE `sys_log` ADD COLUMN `IPAddress` varchar(255) NULL COMMENT 'IP地址' AFTER `UserID`;
|
|
|
+ALTER TABLE `sys_log` ADD COLUMN `OperationData` text NULL COMMENT '操作数据' AFTER `IPAddress`;
|
|
|
+-- 2024-6-25 求职人员新增是否扫码录入字段
|
|
|
+alter table pc_jobuser add column IsAppInsert int comment '是否扫码录入' after openId;
|