xinjiang/DataBase/Sys_Menu_2022-07-02.sql

17 lines
2.0 KiB
Transact-SQL
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

 INSERT INTO [SGGLDB_TCC].[dbo].[Sys_Menu] ([MenuId], [MenuName], [Icon], [Url], [SortIndex],
[SuperMenu], [MenuType], [IsOffice], [IsEnd], [IsUsed]) VALUES
(N'E4B526CC-805E-4131-8E18-2FFA6871507E', N'风险等级设置',
NULL, N'BaseInfo/RiskLevel.aspx', '140',
N'8A2CEE72-2793-49C6-9E2E-E83B2676E2DD', N'Menu_SysSet', '1', '1', '1');
INSERT INTO dbo.Sys_ButtonToMenu(ButtonToMenuId,MenuId,ButtonName,SortIndex)
VALUES('8B19C09E-53EC-44AA-AEB1-F19757E772EA','E4B526CC-805E-4131-8E18-2FFA6871507E','增加',1)
INSERT INTO dbo.Sys_ButtonToMenu(ButtonToMenuId,MenuId,ButtonName,SortIndex)
VALUES('A30CA239-E1EE-4CAD-887F-E35EE2DD3682','E4B526CC-805E-4131-8E18-2FFA6871507E','修改',2)
INSERT INTO dbo.Sys_ButtonToMenu(ButtonToMenuId,MenuId,ButtonName,SortIndex)
VALUES('03DF9D03-6C04-4EC1-BAAD-E3F34070FF85','E4B526CC-805E-4131-8E18-2FFA6871507E','删除',3)
INSERT INTO dbo.Sys_ButtonToMenu(ButtonToMenuId,MenuId,ButtonName,SortIndex)
VALUES('62A697FD-58A8-4004-95A5-BC71B8228727','E4B526CC-805E-4131-8E18-2FFA6871507E','保存',4)
GO