10 lines
389 B
Transact-SQL
10 lines
389 B
Transact-SQL
--delete from Sys_ButtonToMenu where MenuId in (select MenuId from Sys_Menu where MenuType='Menu_ToDo')
|
|
--go
|
|
--delete from Sys_Menu where MenuType='Menu_ToDo'
|
|
--go
|
|
|
|
--HSSE待办
|
|
INSERT INTO dbo.Sys_Menu(MenuId,MenuName,Url,SortIndex,SuperMenu,MenuType,IsOffice,IsEnd,IsUsed)
|
|
VALUES('AEBFEC10-DD23-4E95-A684-B291A681A5E8','待办信息','SysManage/ProjectToDo.aspx',10,'0','Menu_ToDo',0,0,1)
|
|
GO
|