|
@@ -1,20 +1,13 @@
|
|
|
-- 2024-5-11招聘会新增字段
|
|
|
-ALTER TABLE `employmentsitedb`.`pc_jobfairs`
|
|
|
+ALTER TABLE pc_jobfairs
|
|
|
ADD COLUMN `CompanyCount` int NULL COMMENT '企业数量' AFTER `ModifyTime`,
|
|
|
ADD COLUMN `Longitude` varchar(50) NULL COMMENT '经度' AFTER `CompanyCount`,
|
|
|
ADD COLUMN `Latitude` varchar(50) NULL COMMENT '纬度' AFTER `Longitude`;
|
|
|
-ALTER TABLE `employmentsitedb`.`pc_jobfairs`
|
|
|
ADD COLUMN `BoothCount` int NULL COMMENT '摊位数' AFTER `Latitude`;
|
|
|
|
|
|
--2024.05.11 站点人员新增启用禁用功能
|
|
|
INSERT INTO sys_function_code (`FunctionCode`, `FunctionName`, `ParentFunctionCode`, `OrderNo`) VALUES ('T01010307', '启用禁用', 'T010103', 7);
|
|
|
-
|
|
|
---2024.05.11 部分模块导出功能,功能码数据插入
|
|
|
---企业
|
|
|
-INSERT INTO sys_function_code (`FunctionCode`, `FunctionName`, `ParentFunctionCode`, `OrderNo`) VALUES ('T01020106', '导出', 'T010201', 6);
|
|
|
---岗位
|
|
|
-INSERT INTO sys_function_code (`FunctionCode`, `FunctionName`, `ParentFunctionCode`, `OrderNo`) VALUES ('T01020207', '导出', 'T010202', 7);
|
|
|
---求职人员
|
|
|
-INSERT INTO sys_function_code (`FunctionCode`, `FunctionName`, `ParentFunctionCode`, `OrderNo`) VALUES ('T01030107', '导出', 'T010301', 7);
|
|
|
---工作任务
|
|
|
-INSERT INTO sys_function_code (`FunctionCode`, `FunctionName`, `ParentFunctionCode`, `OrderNo`) VALUES ('T01040105', '导出', 'T010401', 5);
|
|
|
+--角色为市管理、区(县管理员)、驿站机构的所有人员,添加站点人员启用禁用权限
|
|
|
+insert into sys_role_sys_function_code (`RoleID`, `FunctionCode`) values('1ca3a0c1-167b-4f5e-a31b-ce0c3eee4d80','T01010307');
|
|
|
+insert into sys_role_sys_function_code (`RoleID`, `FunctionCode`) values('02184e9a-1ed8-461f-bfee-ae0c1df11e9e','T01010307');
|
|
|
+insert into sys_role_sys_function_code (`RoleID`, `FunctionCode`) values('d6f0d433-7a58-497e-b203-d8309edebaba','T01010307');
|