31 lines
		
	
	
		
			1018 B
		
	
	
	
		
			Transact-SQL
		
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			1018 B
		
	
	
	
		
			Transact-SQL
		
	
	
	
| 
 | |
| 
 | |
| 
 | |
| --指挥调度中心菜单移动到安全检查下面-智慧巡检
 | |
| update Sys_Menu
 | |
| set MenuName='智慧巡检',SortIndex=140,SuperMenu='467A0CB9-737D-4451-965E-869EBC3A4BD6',MenuType='Menu_HSSE'
 | |
| where MenuId ='09E6A03F-65C8-4FAC-9659-7A0B56D8CC19'
 | |
| GO
 | |
| 
 | |
| 
 | |
| --182BC982-F98F-41B3-A2D2-9DD834BF5833	Menu_CommandDispatchCenter	指挥调度中心	11	MenuType_P	NULL
 | |
| --select*from Sys_Const
 | |
| --where GroupId ='MenuType_P'
 | |
| 
 | |
| delete Sys_Const
 | |
| where GroupId ='MenuType_P' and ID='182BC982-F98F-41B3-A2D2-9DD834BF5833'
 | |
| GO
 | |
| 
 | |
| IF NOT EXISTS (SELECT * FROM Sys_Menu WHERE MenuId = 'DE0CA5F1-AE72-4752-A244-D474F3F5F9C8')
 | |
| BEGIN
 | |
| INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Icon], [Url], [SortIndex], [SuperMenu], [MenuType], [IsOffice], [IsEnd], [IsUsed]) 
 | |
| VALUES (N'DE0CA5F1-AE72-4752-A244-D474F3F5F9C8', N'塔吊记录', NULL, N'HSSE/TowerCrane/TowerCraneRecord.aspx', '130', N'28C8EDB9-F1C2-4287-8013-28A976B093E2', N'Menu_HSSE', '1', '1', '1');
 | |
| END
 | |
| GO
 | |
| 
 | |
| Alter TABLE [dbo].[Base_Project]add
 | |
| 	[AQMAccount] [nvarchar](50) NULL,
 | |
| 	[AQMPwd] [nvarchar](50) NULL 
 | |
| 
 | |
| 	GO
 |