This commit is contained in:
高飞 2023-08-02 17:21:01 +08:00
commit 059da8996a
1 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@ namespace BLL
/// 定义变量
/// </summary>
private static IQueryable<Model.Bo_Sheng_Unit> getUnits = from x in db.Bo_Sheng_Unit
where (x.DeleteTag == "True" || x.DeleteTag == null)
where (x.DeleteTag == "False" || x.DeleteTag == null)
select x;
/// <summary>
@ -91,7 +91,7 @@ namespace BLL
/// 定义变量
/// </summary>
private static IQueryable<Model.Bo_Sheng_Person> getPersons = from x in db.Bo_Sheng_Person
where (x.DeleteTag == "True" || x.DeleteTag == null)
where (x.DeleteTag == "False" || x.DeleteTag == null)
select x;
/// <summary>