|
@@ -1327,4 +1327,41 @@ ALTER TABLE pc_jobuser ADD COLUMN FinishDate VARCHAR(20) COMMENT '毕业日期'
|
|
|
-- 2024-6-17 系统月度使用情况统计菜单与权限数据
|
|
|
INSERT INTO sys_function_code VALUES ('T010503', '系统月度使用情况统计', 'T0105', 3);
|
|
|
INSERT INTO `sys_menu` VALUES ('T010503', 3, '系统月度使用情况统计', NULL, 'views/statistics/MonthSystemApplyCount', '/MonthSystemApplyCount', 'T0105', NULL, 0, 1, 1, 'T010503', 1, NULL,NULL);
|
|
|
-insert into sys_role_sys_function_code (`RoleID`, `FunctionCode`) values('20afde90-a81a-11ed-a6c5-7085c2a9999e','T010503');
|
|
|
+insert into sys_role_sys_function_code (`RoleID`, `FunctionCode`) values('20afde90-a81a-11ed-a6c5-7085c2a9999e','T010503');
|
|
|
+
|
|
|
+-- 2024-6-17 求职人员统计菜单与权限数据
|
|
|
+insert into sys_function_code values ('T010504', '求职人员统计', 'T0105', 4);
|
|
|
+insert into`sys_menu` values ('T010504', 4, '求职人员统计', NULL, 'views/statistics/JobUserCount', '/JobUserCount', 'T0105', NULL, 0, 1, 1, 'T010504', 1, NULL,NULL);
|
|
|
+insert into sys_role_sys_function_code (`RoleID`, `FunctionCode`) values('20afde90-a81a-11ed-a6c5-7085c2a9999e','T010504');
|
|
|
+
|
|
|
+-- 2024-6-18 求职人员服务记录表
|
|
|
+CREATE TABLE pc_jobuser_service (
|
|
|
+ `ServiceID` varchar(50) NOT NULL,
|
|
|
+ `JobUserID` varchar(50) NULL,
|
|
|
+ `ServiceContent` varchar(255) NULL,
|
|
|
+ `ServiceTime` datetime NULL,
|
|
|
+ `ServiceUserID` varchar(50) NULL,
|
|
|
+ `CreateUserID` varchar(50) NULL,
|
|
|
+ `CreateTime` datetime NULL,
|
|
|
+ `ModifyUserID` varchar(50) NULL,
|
|
|
+ `ModifyTime` datetime NULL,
|
|
|
+ PRIMARY KEY (`ServiceID`)
|
|
|
+);
|
|
|
+
|
|
|
+-- 2024.06.18 企业表新增注册资本类型字段,字典表新增注册资本类型字典
|
|
|
+insert into sys_dictionary values ('RegisteredCapitalType','注册资本类型','10','1');
|
|
|
+insert into sys_dictionary_item values
|
|
|
+(uuid(), '', 'RegisteredCapitalType', 1, '万元(人民币)', 10, 1, 0),
|
|
|
+(uuid(), '', 'RegisteredCapitalType', 2, '万元(港币)', 20, 1, 0),
|
|
|
+(uuid(), '', 'RegisteredCapitalType', 3, '万元(美元)', 30, 1, 0),
|
|
|
+(uuid(), '', 'RegisteredCapitalType', 4, '万元(欧元)', 40, 1, 0),
|
|
|
+(uuid(), '', 'RegisteredCapitalType', 5, '万元(日元)', 50, 1, 0),
|
|
|
+(uuid(), '', 'RegisteredCapitalType', 6, '万元(其他)', 60, 1, 0);
|
|
|
+
|
|
|
+alter table pc_company add column RegisteredCapitalType int comment '注册资本类型' after RegisteredCapital;
|
|
|
+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');
|