12345678 |
- -- 2024-5-23 添加系统使用情况统计菜单与权限编码
- INSERT INTO sys_function_code VALUES ('T010502', '系统使用情况统计', 'T0105', 2);
- INSERT INTO `sys_menu` VALUES ('T010502', 2, '系统使用情况统计', NULL, 'views/statistics/SystemApplyCount', '/systemApplyCount', 'T0105', NULL, 0, 1, 1, 'T010502', 1, NULL);
- -- 2024-5-23 为系统管理员和市级管理员添加统使用情况统计权限
- insert into sys_role_sys_function_code (`RoleID`, `FunctionCode`) values('20afde90-a81a-11ed-a6c5-7085c2a9999e','T0105');
- insert into sys_role_sys_function_code (`RoleID`, `FunctionCode`) values('20afde90-a81a-11ed-a6c5-7085c2a9999e','T010502');
- insert into sys_role_sys_function_code (`RoleID`, `FunctionCode`) values('d6f0d433-7a58-497e-b203-d8309edebaba','T0105');
- insert into sys_role_sys_function_code (`RoleID`, `FunctionCode`) values('d6f0d433-7a58-497e-b203-d8309edebaba','T010502');
|