2023-09-26

This commit is contained in:
2023-09-26 15:20:47 +08:00
parent 1c28e4069e
commit d5d459bf1c
77 changed files with 10228 additions and 3160 deletions
+19
View File
@@ -386,6 +386,25 @@ namespace BLL
/// 项目细分状态
/// </summary>
public const string GroupId_ProjectState = "ProjectState";
/// <summary>
/// 子公司弹窗界面
/// </summary>
public const string Group_InterfacePopup = "InterfacePopup";
/// <summary>
/// 穿透界面Referer白名单
/// </summary>
public const string Group_SafeReferer = "SafeReferer";
#endregion
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();
}
}
}
}