20023-08-10

This commit is contained in:
2023-08-10 11:40:02 +08:00
parent c41b3b9777
commit 02fcf5be10
82 changed files with 9031 additions and 2997 deletions
+19
View File
@@ -403,6 +403,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();
}
}
}
}