2023-08-04

This commit is contained in:
2023-08-04 17:06:50 +08:00
parent 70a51ab125
commit 78e8037f08
81 changed files with 8897 additions and 2763 deletions
+17
View File
@@ -92,6 +92,15 @@ namespace BLL
{
return Funs.DB.Sys_Const.FirstOrDefault(e => e.ConstValue == constValue && e.GroupId == groupId);
}
public static void DeleteConstValueBygroupId(string groupId)
{
var q = Funs.DB.Sys_Const.Where(x => x.GroupId == groupId);
if (q != null)
{
Funs.DB.Sys_Const.DeleteAllOnSubmit(q.ToList());
Funs.DB.SubmitChanges();
}
}
#region ID得到名称字符串
/// <summary>
@@ -376,6 +385,14 @@ namespace BLL
/// 作业状态 -危大工程清单 组id
/// </summary>
public const string Group_WorkStates = "WorkStates";
/// <summary>
/// 子公司弹窗界面
/// </summary>
public const string Group_InterfacePopup = "InterfacePopup";
/// <summary>
/// 穿透界面Referer白名单
/// </summary>
public const string Group_SafeReferer = "SafeReferer";
#endregion
}
}