This commit is contained in:
夏菊 2025-12-15 11:02:14 +08:00
parent a2f2bee5b9
commit 32d2008212
2 changed files with 55 additions and 0 deletions

View File

@ -0,0 +1,37 @@
--
IF NOT EXISTS (SELECT * FROM Sys_Menu WHERE MenuId = 'C36F208B-7814-4C70-9BC2-0E6EE985E90E')
BEGIN
insert into Sys_Menu(MenuId,MenuName,Url,SortIndex,SuperMenu,MenuType,IsOffice,IsEnd,IsUsed)
values('C36F208B-7814-4C70-9BC2-0E6EE985E90E','集团督查检查','',10,'0','Menu_SJTB_P',0,0,1)
END
GO
--
update Sys_Menu set SortIndex=20 where MenuId='976F859C-BE8C-4A88-8117-C6A971872135'
GO
--
IF NOT EXISTS (SELECT * FROM Sys_Menu WHERE MenuId = 'DEC083C5-BDB7-4C1A-85DD-3B4D3E234AB6')
BEGIN
insert into Sys_Menu(MenuId,MenuName,Url,SortIndex,SuperMenu,MenuType,IsOffice,IsEnd,IsUsed)
values('DEC083C5-BDB7-4C1A-85DD-3B4D3E234AB6','集团下发督查检查整改','DCGL/ServerCheck/CheckRectify.aspx?proType=1',10,'C36F208B-7814-4C70-9BC2-0E6EE985E90E','Menu_SJTB_P',0,1,1)
END
GO
select*from Sys_Const
where GroupId='MenuType_P'
order by SortIndex
--
IF NOT EXISTS (SELECT * FROM Sys_Const WHERE ID = 'F16A6722-148D-40E9-A0B5-ACEA5BFC5B10')
BEGIN
insert into Sys_Const(ID,ConstValue,ConstText,SortIndex,GroupId)
values('F16A6722-148D-40E9-A0B5-ACEA5BFC5B10','Menu_SJTB_P','数据管理',7,'MenuType_P')
END
GO

View File

@ -463112,6 +463112,8 @@ namespace Model
private string _ProblemTypes;
private string _RiskLevel;
private System.Nullable<int> _SortIndex;
private string _Situation;
@ -463436,6 +463438,22 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_RiskLevel", DbType="NVarChar(50)")]
public string RiskLevel
{
get
{
return this._RiskLevel;
}
set
{
if ((this._RiskLevel != value))
{
this._RiskLevel = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SortIndex", DbType="Int")]
public System.Nullable<int> SortIndex
{