ChengDa_English/DataBase/版本日志/SGGLDB_CD_V2024-05-13-002.sql

79 lines
15 KiB
Transact-SQL
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Icon], [Url], [SortIndex], [SuperMenu], [MenuType], [IsOffice], [IsEnd], [IsUsed]) VALUES (N'CB487A5C-FE68-4951-A0E9-EB0D217DCA9E', N'分包方主要负责人绩效评价', NULL, N'HSSE/Perfomance/PerfomanceManagerRecord.aspx', '30', N'D3576E49-DBC9-43EA-9822-EA5F4D96CA24', N'Menu_HSSE', '0', '1', '1');
UPDATE TOP(1) [dbo].[Sys_Menu] SET [MenuId]=N'1320A6D8-713B-43D4-BB00-CDA3DE6D24CB', [MenuName]=N'项目组管理人员绩效评价', [Icon]=NULL, [Url]=N'HSSE/Perfomance/PersonPerfomance.aspx', [SortIndex]='20', [SuperMenu]=N'D3576E49-DBC9-43EA-9822-EA5F4D96CA24', [MenuType]=N'Menu_HSSE', [IsOffice]='0', [IsEnd]='1', [IsUsed]='1' WHERE ([MenuId]=N'1320A6D8-713B-43D4-BB00-CDA3DE6D24CB');
UPDATE TOP(1) [dbo].[Sys_Menu] SET [MenuId]=N'EED8DBEE-83F6-4B5B-8382-AF40EB66B0A9', [MenuName]=N'分包方绩效评价', [Icon]=NULL, [Url]=N'HSSE/Perfomance/PerfomanceRecord.aspx', [SortIndex]='10', [SuperMenu]=N'D3576E49-DBC9-43EA-9822-EA5F4D96CA24', [MenuType]=N'Menu_HSSE', [IsOffice]='0', [IsEnd]='1', [IsUsed]='1' WHERE ([MenuId]=N'EED8DBEE-83F6-4B5B-8382-AF40EB66B0A9');
INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Icon], [Url], [SortIndex], [SuperMenu], [MenuType], [IsOffice], [IsEnd], [IsUsed]) VALUES (N'C07999B5-E4E9-4875-A515-360EEB8DF6E9', N'绩效评价内容定义', NULL, N'BaseInfo/PerfomanceContent.aspx', '150', N'8A2CEE72-2793-49C6-9E2E-E83B2676E2DD', N'Menu_SysSet', '1', '1', '1');
INSERT INTO [dbo].[Sys_ButtonToMenu] ([ButtonToMenuId], [MenuId], [ButtonName], [SortIndex]) VALUES (N'8B9CCEC7-267B-4550-A673-F3FED59FA6D7', N'CB487A5C-FE68-4951-A0E9-EB0D217DCA9E', N'删除', '3');
INSERT INTO [dbo].[Sys_ButtonToMenu] ([ButtonToMenuId], [MenuId], [ButtonName], [SortIndex]) VALUES (N'A212BF7D-0ED0-4235-9BA7-F3B2CD3845ED', N'CB487A5C-FE68-4951-A0E9-EB0D217DCA9E', N'修改', '2');
INSERT INTO [dbo].[Sys_ButtonToMenu] ([ButtonToMenuId], [MenuId], [ButtonName], [SortIndex]) VALUES (N'A49E992A-52F2-4BF7-B4D1-2B815C0ACC9C', N'CB487A5C-FE68-4951-A0E9-EB0D217DCA9E', N'保存', '4');
INSERT INTO [dbo].[Sys_ButtonToMenu] ([ButtonToMenuId], [MenuId], [ButtonName], [SortIndex]) VALUES (N'28CD2E82-E57C-4AAC-AA4A-0FA654458EE5', N'CB487A5C-FE68-4951-A0E9-EB0D217DCA9E', N'增加', '1');
INSERT INTO [dbo].[Sys_ButtonToMenu] ([ButtonToMenuId], [MenuId], [ButtonName], [SortIndex]) VALUES (N'D9A4F641-F8EB-481E-A756-33B64D769F4B', N'C07999B5-E4E9-4875-A515-360EEB8DF6E9', N'删除', '3');
INSERT INTO [dbo].[Sys_ButtonToMenu] ([ButtonToMenuId], [MenuId], [ButtonName], [SortIndex]) VALUES (N'45C70AC0-DBB6-4149-AA24-665033970318', N'C07999B5-E4E9-4875-A515-360EEB8DF6E9', N'修改', '2');
INSERT INTO [dbo].[Sys_ButtonToMenu] ([ButtonToMenuId], [MenuId], [ButtonName], [SortIndex]) VALUES (N'DBE0E501-9EE6-4C31-8A5A-D3E86AD9D413', N'C07999B5-E4E9-4875-A515-360EEB8DF6E9', N'保存', '4');
INSERT INTO [dbo].[Sys_ButtonToMenu] ([ButtonToMenuId], [MenuId], [ButtonName], [SortIndex]) VALUES (N'8CEE9A80-7657-46E6-A748-C6D82CBE9EC2', N'C07999B5-E4E9-4875-A515-360EEB8DF6E9', N'增加', '1');
CREATE TABLE [dbo].[Perfomance_PerfomanceContent](
[PerfomanceId] [nvarchar](50) NOT NULL,
[PerfomanceContent] [nvarchar](50) NULL,
[PerfomanceValue] [nvarchar](50) NULL,
[PerfomanceType] [int] NULL,
[ProjectId] [nvarchar](50) NULL,
[ShowIndex] [int] NULL,
[ReMark] [nvarchar](500) NULL,
CONSTRAINT [PK_HSSE_PerfomanceContent] PRIMARY KEY CLUSTERED
(
[PerfomanceId] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
INSERT INTO [dbo].[Perfomance_PerfomanceContent] ([PerfomanceId], [PerfomanceContent], [PerfomanceValue], [PerfomanceType], [ProjectId], [ShowIndex], [ReMark]) VALUES (N'003E683B-067A-4CA5-8C5D-43A0521E412B', N'具有注册安全工程师证或地方及行业安全员资质证书,持证上岗', N'10', '2', NULL, '1', NULL);
INSERT INTO [dbo].[Perfomance_PerfomanceContent] ([PerfomanceId], [PerfomanceContent], [PerfomanceValue], [PerfomanceType], [ProjectId], [ShowIndex], [ReMark]) VALUES (N'063a435a-34dc-4e87-9c5c-283eef785a7d', N'体系文件、各种管理规定的针对性', N'5', '1', NULL, '1', NULL);
INSERT INTO [dbo].[Perfomance_PerfomanceContent] ([PerfomanceId], [PerfomanceContent], [PerfomanceValue], [PerfomanceType], [ProjectId], [ShowIndex], [ReMark]) VALUES (N'78EC06C2-F2F1-4BD9-81BF-67F39D86BBE5', N'具有注册安全工程师证或地方及行业安全员资质证书,持证上岗', N'10', '3', NULL, '1', NULL);
INSERT INTO [dbo].[Perfomance_PerfomanceContent] ([PerfomanceId], [PerfomanceContent], [PerfomanceValue], [PerfomanceType], [ProjectId], [ShowIndex], [ReMark]) VALUES (N'7A5CF2C6-C4D8-4C1F-8409-54DEA85FF20C', N'具有丰富项目HSE 内页管理经验单独编制项目HSE 计划、应急预案等文件', N'10', '2', NULL, '2', NULL);
INSERT INTO [dbo].[Perfomance_PerfomanceContent] ([PerfomanceId], [PerfomanceContent], [PerfomanceValue], [PerfomanceType], [ProjectId], [ShowIndex], [ReMark]) VALUES (N'F6E53A00-423C-46D6-B023-B3ED1BF5A660', N'具有丰富项目HSE 内页管理经验单独编制项目HSE 计划、应急预案等文件', N'10', '3', NULL, '2', NULL);
INSERT INTO [dbo].[Perfomance_PerfomanceContent] ([PerfomanceId], [PerfomanceContent], [PerfomanceValue], [PerfomanceType], [ProjectId], [ShowIndex], [ReMark]) VALUES (N'07403FD8-A29F-4D3F-A4DD-EE7B3378C307', N'组织机构、岗位职责', N'5', '1', NULL, '2', NULL);
INSERT INTO [dbo].[Perfomance_PerfomanceContent] ([PerfomanceId], [PerfomanceContent], [PerfomanceValue], [PerfomanceType], [ProjectId], [ShowIndex], [ReMark]) VALUES (N'0EB9D3FB-2910-4EB1-841C-2F5BF9B0AF5B', N'现场管理体系运行情况', N'5', '1', NULL, '3', NULL);
INSERT INTO [dbo].[Perfomance_PerfomanceContent] ([PerfomanceId], [PerfomanceContent], [PerfomanceValue], [PerfomanceType], [ProjectId], [ShowIndex], [ReMark]) VALUES (N'66BD0A75-9E58-4A17-B5B7-E2D6B137FA4C', N'具有丰富项目HSE 现场管理经验,快速准确查出安全隐患,按隐患级别限期整改合格', N'10', '3', NULL, '3', NULL);
INSERT INTO [dbo].[Perfomance_PerfomanceContent] ([PerfomanceId], [PerfomanceContent], [PerfomanceValue], [PerfomanceType], [ProjectId], [ShowIndex], [ReMark]) VALUES (N'FF487207-E9F8-436F-B6DD-84853080B4F0', N'具有丰富项目HSE 现场管理经验,快速准确查出安全隐患,按隐患级别限期整改合格', N'10', '2', NULL, '3', NULL);
INSERT INTO [dbo].[Perfomance_PerfomanceContent] ([PerfomanceId], [PerfomanceContent], [PerfomanceValue], [PerfomanceType], [ProjectId], [ShowIndex], [ReMark]) VALUES (N'E9D23300-544C-4A92-9B52-BAEDBC793665', N'热爱HSE 工作,强烈的责任心和事业感,敢说、敢管、敢处理', N'10', '3', NULL, '4', NULL);
INSERT INTO [dbo].[Perfomance_PerfomanceContent] ([PerfomanceId], [PerfomanceContent], [PerfomanceValue], [PerfomanceType], [ProjectId], [ShowIndex], [ReMark]) VALUES (N'0F37958C-0B55-408B-9D00-2DAFDC5C8C4E', N'人员培训', N'5', '1', NULL, '4', NULL);
INSERT INTO [dbo].[Perfomance_PerfomanceContent] ([PerfomanceId], [PerfomanceContent], [PerfomanceValue], [PerfomanceType], [ProjectId], [ShowIndex], [ReMark]) VALUES (N'35F7BB84-CC9C-46C9-9A72-7891DA0D1DA6', N'热爱HSE 工作,强烈的责任心和事业感,敢说、敢管、敢处理', N'10', '2', NULL, '4', NULL);
INSERT INTO [dbo].[Perfomance_PerfomanceContent] ([PerfomanceId], [PerfomanceContent], [PerfomanceValue], [PerfomanceType], [ProjectId], [ShowIndex], [ReMark]) VALUES (N'10F9CA9F-A5D6-44FF-B1A3-0CD5F71135C1', N'资源配备', N'5', '1', NULL, '5', NULL);
INSERT INTO [dbo].[Perfomance_PerfomanceContent] ([PerfomanceId], [PerfomanceContent], [PerfomanceValue], [PerfomanceType], [ProjectId], [ShowIndex], [ReMark]) VALUES (N'EB42293D-8471-4785-BD32-7D4F8D4AAF59', N'积极参加业主、监理公司和PEC 总承包方召开的有关HSE 会议,观点鲜明', N'10', '2', NULL, '5', NULL);
INSERT INTO [dbo].[Perfomance_PerfomanceContent] ([PerfomanceId], [PerfomanceContent], [PerfomanceValue], [PerfomanceType], [ProjectId], [ShowIndex], [ReMark]) VALUES (N'55D469B0-E270-4325-BE0F-B9052616120A', N'积极参加业主、监理公司和PEC 总承包方召开的有关HSE 会议,观点鲜明', N'10', '3', NULL, '5', NULL);
INSERT INTO [dbo].[Perfomance_PerfomanceContent] ([PerfomanceId], [PerfomanceContent], [PerfomanceValue], [PerfomanceType], [ProjectId], [ShowIndex], [ReMark]) VALUES (N'808879B4-9C08-4A46-9A7E-91A33D06F183', N'主动协调与业主、监理和总承包方的关系,征得其支持和帮助,促进本身工作开展', N'10', '2', NULL, '6', NULL);
INSERT INTO [dbo].[Perfomance_PerfomanceContent] ([PerfomanceId], [PerfomanceContent], [PerfomanceValue], [PerfomanceType], [ProjectId], [ShowIndex], [ReMark]) VALUES (N'9A57D2F1-50CE-4EDF-B40C-7F10417977AB', N'主动协调与业主、监理和总承包方的关系,征得其支持和帮助,促进本身工作开展', N'10', '3', NULL, '6', NULL);
INSERT INTO [dbo].[Perfomance_PerfomanceContent] ([PerfomanceId], [PerfomanceContent], [PerfomanceValue], [PerfomanceType], [ProjectId], [ShowIndex], [ReMark]) VALUES (N'175C13CE-EE06-4851-A341-20D9EC6BADD1', N'HSSE方案、措施报批', N'5', '1', NULL, '6', NULL);
INSERT INTO [dbo].[Perfomance_PerfomanceContent] ([PerfomanceId], [PerfomanceContent], [PerfomanceValue], [PerfomanceType], [ProjectId], [ShowIndex], [ReMark]) VALUES (N'2b9cb641-ab3a-4cd1-91db-4b310b8f3fcd', N'方案、措施执行', N'5', '1', NULL, '7', NULL);
INSERT INTO [dbo].[Perfomance_PerfomanceContent] ([PerfomanceId], [PerfomanceContent], [PerfomanceValue], [PerfomanceType], [ProjectId], [ShowIndex], [ReMark]) VALUES (N'6BCCA81F-FDF0-48ED-9C43-8672A3C830E1', N'按时保质保量编写HSE 周报月报,准时上报业主、监理公司和总承包方', N'10', '2', NULL, '7', NULL);
INSERT INTO [dbo].[Perfomance_PerfomanceContent] ([PerfomanceId], [PerfomanceContent], [PerfomanceValue], [PerfomanceType], [ProjectId], [ShowIndex], [ReMark]) VALUES (N'10248F97-AFD9-4370-B1B0-6F0268E62BA2', N'按时保质保量编写HSE 周报月报,准时上报业主、监理公司和总承包方', N'10', '3', NULL, '7', NULL);
INSERT INTO [dbo].[Perfomance_PerfomanceContent] ([PerfomanceId], [PerfomanceContent], [PerfomanceValue], [PerfomanceType], [ProjectId], [ShowIndex], [ReMark]) VALUES (N'41B2B6A5-09FC-41AC-91F7-24B401AF1327', N'危害辨识、风险评价和过程控制', N'5', '1', NULL, '8', NULL);
INSERT INTO [dbo].[Perfomance_PerfomanceContent] ([PerfomanceId], [PerfomanceContent], [PerfomanceValue], [PerfomanceType], [ProjectId], [ShowIndex], [ReMark]) VALUES (N'0018E19D-475C-4165-8E14-13D4C62D17D2', N'准时参加业主、监理及总承包方组织的专检、联检和大检查,发现隐患,提出建议', N'10', '2', NULL, '8', NULL);
INSERT INTO [dbo].[Perfomance_PerfomanceContent] ([PerfomanceId], [PerfomanceContent], [PerfomanceValue], [PerfomanceType], [ProjectId], [ShowIndex], [ReMark]) VALUES (N'7F281A66-2400-4529-8F43-C2FD57A722F2', N'准时参加业主、监理及总承包方组织的专检、联检和大检查,发现隐患,提出建议', N'10', '3', NULL, '8', NULL);
INSERT INTO [dbo].[Perfomance_PerfomanceContent] ([PerfomanceId], [PerfomanceContent], [PerfomanceValue], [PerfomanceType], [ProjectId], [ShowIndex], [ReMark]) VALUES (N'7DC90F3D-C6E1-4480-98BD-4E874B1B806E', N'前瞻性眼光,提前反映诸如脚手架材料、安全网、专职安全员不足等问题,以求主动', N'10', '3', NULL, '9', NULL);
INSERT INTO [dbo].[Perfomance_PerfomanceContent] ([PerfomanceId], [PerfomanceContent], [PerfomanceValue], [PerfomanceType], [ProjectId], [ShowIndex], [ReMark]) VALUES (N'4E89CC68-99CD-4D45-ADFB-26E9BF808C4E', N'HSSE会议', N'5', '1', NULL, '9', NULL);
INSERT INTO [dbo].[Perfomance_PerfomanceContent] ([PerfomanceId], [PerfomanceContent], [PerfomanceValue], [PerfomanceType], [ProjectId], [ShowIndex], [ReMark]) VALUES (N'451E1E1A-53B4-4D1B-A906-B075B4CD4C93', N'前瞻性眼光,提前反映诸如脚手架材料、安全网、专职安全员不足等问题,以求主动', N'10', '2', NULL, '9', NULL);
INSERT INTO [dbo].[Perfomance_PerfomanceContent] ([PerfomanceId], [PerfomanceContent], [PerfomanceValue], [PerfomanceType], [ProjectId], [ShowIndex], [ReMark]) VALUES (N'4E76FBD7-9BD4-45F5-AFDF-B2DFAA5AA17C', N'高度重视项目安全文化建设,充分利用班前会、三级安全培训会、板报、安全警示牌等机会大力宣传项目安全文化', N'10', '3', NULL, '10', NULL);
INSERT INTO [dbo].[Perfomance_PerfomanceContent] ([PerfomanceId], [PerfomanceContent], [PerfomanceValue], [PerfomanceType], [ProjectId], [ShowIndex], [ReMark]) VALUES (N'6DEF7077-674E-420E-BAD2-5B8E05F44B44', N'施工作业HSSE管理', N'5', '1', NULL, '10', NULL);
INSERT INTO [dbo].[Perfomance_PerfomanceContent] ([PerfomanceId], [PerfomanceContent], [PerfomanceValue], [PerfomanceType], [ProjectId], [ShowIndex], [ReMark]) VALUES (N'C7214166-4F5F-496E-84D9-FF08E0C3BD09', N'高度重视项目安全文化建设,充分利用班前会、三级安全培训会、板报、安全警示牌等机会大力宣传项目安全文化', N'10', '2', NULL, '10', NULL);
INSERT INTO [dbo].[Perfomance_PerfomanceContent] ([PerfomanceId], [PerfomanceContent], [PerfomanceValue], [PerfomanceType], [ProjectId], [ShowIndex], [ReMark]) VALUES (N'709871A4-ACDE-4AEC-82E0-78A9FD0C575B', N'现场违章', N'5', '1', NULL, '11', NULL);
INSERT INTO [dbo].[Perfomance_PerfomanceContent] ([PerfomanceId], [PerfomanceContent], [PerfomanceValue], [PerfomanceType], [ProjectId], [ShowIndex], [ReMark]) VALUES (N'76D22A2D-3A56-4863-B560-531C052101F8', N'宣传、警示', N'5', '1', NULL, '12', NULL);
INSERT INTO [dbo].[Perfomance_PerfomanceContent] ([PerfomanceId], [PerfomanceContent], [PerfomanceValue], [PerfomanceType], [ProjectId], [ShowIndex], [ReMark]) VALUES (N'800decff-c353-4e0d-9e65-29ffe8b5c841', N'文明施工与环境卫生', N'5', '1', NULL, '13', NULL);
INSERT INTO [dbo].[Perfomance_PerfomanceContent] ([PerfomanceId], [PerfomanceContent], [PerfomanceValue], [PerfomanceType], [ProjectId], [ShowIndex], [ReMark]) VALUES (N'907BA720-07F6-4950-A274-CAE05F753144', N'消防安全', N'5', '1', NULL, '14', NULL);
INSERT INTO [dbo].[Perfomance_PerfomanceContent] ([PerfomanceId], [PerfomanceContent], [PerfomanceValue], [PerfomanceType], [ProjectId], [ShowIndex], [ReMark]) VALUES (N'AAE7519E-2B0F-4E57-A2D7-D4FB7AC47EA8', N'治安保卫', N'5', '1', NULL, '15', NULL);
INSERT INTO [dbo].[Perfomance_PerfomanceContent] ([PerfomanceId], [PerfomanceContent], [PerfomanceValue], [PerfomanceType], [ProjectId], [ShowIndex], [ReMark]) VALUES (N'B193283E-B218-4ED7-9701-219529D60349', N'奖惩情况', N'5', '1', NULL, '16', NULL);
INSERT INTO [dbo].[Perfomance_PerfomanceContent] ([PerfomanceId], [PerfomanceContent], [PerfomanceValue], [PerfomanceType], [ProjectId], [ShowIndex], [ReMark]) VALUES (N'BBA0BDA3-3D58-43FE-9F8F-4E0ADF7A3B6F', N'应急准备及应急演练', N'5', '1', NULL, '17', NULL);
INSERT INTO [dbo].[Perfomance_PerfomanceContent] ([PerfomanceId], [PerfomanceContent], [PerfomanceValue], [PerfomanceType], [ProjectId], [ShowIndex], [ReMark]) VALUES (N'C98F63E4-5965-482A-B800-9EEADFEFEA3D', N'法律、法规、管理规范清单', N'5', '1', NULL, '18', NULL);
INSERT INTO [dbo].[Perfomance_PerfomanceContent] ([PerfomanceId], [PerfomanceContent], [PerfomanceValue], [PerfomanceType], [ProjectId], [ShowIndex], [ReMark]) VALUES (N'EE9375A2-3A1E-4BF6-B243-AFD329F439A5', N'事故、事件调查处理情况', N'5', '1', NULL, '19', NULL);
INSERT INTO [dbo].[Perfomance_PerfomanceContent] ([PerfomanceId], [PerfomanceContent], [PerfomanceValue], [PerfomanceType], [ProjectId], [ShowIndex], [ReMark]) VALUES (N'FF577135-2599-41BD-B50D-3ED63E312332', N'过程文件的规范性', N'5', '1', NULL, '20', NULL);