This commit is contained in:
geh
2026-07-31 10:33:20 +08:00
parent 7d79e35592
commit 4bd6e23931
6 changed files with 163 additions and 10 deletions
@@ -0,0 +1,8 @@
--公司级:项目申请预立项
IF NOT EXISTS (SELECT * FROM Sys_Menu WHERE MenuId = '204ACA82-15B4-4C80-AE9F-ACF25CE12345')
BEGIN
INSERT INTO dbo.Sys_Menu (MenuId, MenuName,Url, SortIndex, SuperMenu, MenuType, IsOffice, IsEnd, IsUsed)
VALUES (N'204ACA82-15B4-4C80-AE9F-ACF25CE12345', N'数据治理监控', N'ProjectData/DataGovernance.aspx', 81, 'C2297533-B7C0-441E-B29F-ADE87C6F8978', 'Menu_SysSet', 1,1, 1);
END
GO