|
@@ -1462,4 +1462,62 @@ UPDATE sys_function_code SET FunctionName = '就业驿站数据地图' WHERE Fun
|
|
|
# 删除数据大屏原菜单
|
|
|
DELETE FROM sys_menu WHERE MenuNo = 'T011004';
|
|
|
DELETE FROM sys_function_code WHERE FunctionCode = 'T011004';
|
|
|
-DELETE FROM sys_role_sys_function_code WHERE FunctionCode = 'T011004';
|
|
|
+DELETE FROM sys_role_sys_function_code WHERE FunctionCode = 'T011004';
|
|
|
+
|
|
|
+-- 2024.8.6
|
|
|
+create table pc_signin
|
|
|
+(
|
|
|
+ SigninId varchar(50) not null comment '唯一标识',
|
|
|
+ SiteID varchar(50) comment '所属驿站',
|
|
|
+ SigninType int comment '打卡类型,字典:SigninType',
|
|
|
+ CompanyID varchar(50) comment '走访企业',
|
|
|
+ JobuserID varchar(50) comment '走访人员',
|
|
|
+ SigninTime datetime comment '打卡时间',
|
|
|
+ Content text comment '服务内容',
|
|
|
+ Longitude varchar(50) comment '经度',
|
|
|
+ Latitude varchar(50) comment '纬度',
|
|
|
+ RecordStatus int comment '状态',
|
|
|
+ CreateUserID varchar(50) comment '创建人',
|
|
|
+ CreateTime datetime comment '创建时间',
|
|
|
+ ModifyUserID varchar(50) comment '修改人',
|
|
|
+ ModifyTime datetime comment '修改时间',
|
|
|
+ primary key (SigninId)
|
|
|
+);
|
|
|
+
|
|
|
+alter table pc_signin add constraint FK_Pc_Signin_Ref_Company foreign key (CompanyID)
|
|
|
+ references pc_company (CompanyID) on delete restrict on update restrict;
|
|
|
+
|
|
|
+alter table pc_signin add constraint FK_Pc_Signin_Ref_JobUser foreign key (JobuserID)
|
|
|
+ references pc_jobuser (JobuserID) on delete restrict on update restrict;
|
|
|
+
|
|
|
+alter table pc_signin add constraint FK_Pc_Signin_Ref_Site foreign key (SiteID)
|
|
|
+ references pc_site (SiteID) on delete restrict on update restrict;
|
|
|
+
|
|
|
+
|
|
|
+ INSERT INTO `sys_dictionary` (`DictionaryCode`, `Name`, `OrderNo`, `RecordStatus`) VALUES
|
|
|
+ ('SigninType', '打卡类型', 200, 1);
|
|
|
+ INSERT INTO `sys_dictionary_item` (`DictionaryItemID`, `Code`, `DictionaryCode`, `Value`, `Name`, `OrderNo`, `RecordStatus`, `IsEditable`) VALUES
|
|
|
+ ('ac93ede5-538d-11ef-8d63-7085c2a9999e', '', 'SigninType', 1, '走访企业', 1, 1, 0),
|
|
|
+ ('b100cbf2-538d-11ef-8d63-7085c2a9999e', '', 'SigninType', 2, '走访人员', 2, 1, 0),
|
|
|
+ ('b4ec8c51-538d-11ef-8d63-7085c2a9999e', '', 'SigninType', 3, '其他外联事项', 3, 1, 0);
|
|
|
+
|
|
|
+ -- 2024-08-06 驿站工作人员外出地图菜单
|
|
|
+ INSERT INTO sys_function_code VALUES ('T011004', '驿站工作人员外出地图', 'T0110', 4);
|
|
|
+ INSERT INTO `sys_menu` VALUES ('T011004', 4, '驿站工作人员外出地图', NULL, 'views/dataMap/siteUserWorkDataMap', '/siteUserWorkDataMap', 'T0110', NULL, 0, 1, 1, 'T011004', 1, NULL, 1);
|
|
|
+ insert into sys_role_sys_function_code (`RoleID`, `FunctionCode`) values('20afde90-a81a-11ed-a6c5-7085c2a9999e','T011004');
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+INSERT INTO `sys_function_code` (`FunctionCode`, `FunctionName`, `ParentFunctionCode`, `OrderNo`) VALUES ('T010305', '外出服务管理', 'T0103', 5); INSERT INTO `sys_function_code` (`FunctionCode`, `FunctionName`, `ParentFunctionCode`, `OrderNo`) VALUES ('T01030501', '查看', 'T010305', 1);
|
|
|
+INSERT INTO `sys_function_code` (`FunctionCode`, `FunctionName`, `ParentFunctionCode`, `OrderNo`) VALUES ('T01030502', '编辑', 'T010305', 2);
|
|
|
+INSERT INTO `sys_function_code` (`FunctionCode`, `FunctionName`, `ParentFunctionCode`, `OrderNo`) VALUES ('T01030503', '删除', 'T010305', 3);
|
|
|
+INSERT INTO `sys_function_code` (`FunctionCode`, `FunctionName`, `ParentFunctionCode`, `OrderNo`) VALUES ('T01030504', '跟进', 'T010305', 4);
|
|
|
+
|
|
|
+
|
|
|
+INSERT INTO `sys_menu` (`MenuNo`, `OrderNo`, `MenuName`, `Icon`, `ViewPath`, `Url`, `ParentMenuNo`, `Description`, `IsTopMenu`, `IsVisible`, `IsLeaf`, `FunctionCode`, `RecordStatus`, `ShortcutIcon`, `IsBlank`) VALUES ('T010305', 5, '外出服务管理', NULL, '', '/signinMgt', 'T0103', '外出服务管理', 0, 1, 1, 'T010305', 1, NULL, NULL);
|
|
|
+INSERT INTO `sys_menu` (`MenuNo`, `OrderNo`, `MenuName`, `Icon`, `ViewPath`, `Url`, `ParentMenuNo`, `Description`, `IsTopMenu`, `IsVisible`, `IsLeaf`, `FunctionCode`, `RecordStatus`, `ShortcutIcon`, `IsBlank`) VALUES ('T01030501', 1, '外出服务信息', NULL, 'views/jobusermgr/signinMgt/index', '/index', 'T010305', '', 0, 0, 1, 'T010305', 1, NULL, NULL);
|
|
|
+INSERT INTO `sys_menu` (`MenuNo`, `OrderNo`, `MenuName`, `Icon`, `ViewPath`, `Url`, `ParentMenuNo`, `Description`, `IsTopMenu`, `IsVisible`, `IsLeaf`, `FunctionCode`, `RecordStatus`, `ShortcutIcon`, `IsBlank`) VALUES ('T01030502', 1, '编辑外出服务', NULL, 'views/jobusermgr/signinMgt/edit', '/edit', 'T010305', '', 0, 0, 1, 'T010305', 1, NULL, NULL);
|
|
|
+insert into sys_role_sys_function_code (`RoleID`, `FunctionCode`) values('20afde90-a81a-11ed-a6c5-7085c2a9999e','T010305');
|
|
|
+
|
|
|
+--求职意向表其他信息字段长度扩展
|
|
|
+alter table pc_jobhunt modify OtherDemand varchar(5000)
|