This commit is contained in:
parent
a2f2bee5b9
commit
32d2008212
|
|
@ -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
|
||||
|
||||
|
||||
|
|
@ -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
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue