This commit is contained in:
夏菊 2026-04-23 09:25:11 +08:00
parent 2565aac9b3
commit 87cb7eb7ba
1 changed files with 3 additions and 3 deletions

View File

@ -11,7 +11,6 @@ namespace BLL
/// </summary> /// </summary>
public static class PersonService public static class PersonService
{ {
public static Model.SGGLDB db = Funs.DB;
#region #region
/// <summary> /// <summary>
@ -26,7 +25,7 @@ namespace BLL
/// <summary> /// <summary>
/// 定义变量 /// 定义变量
/// </summary> /// </summary>
private static IQueryable<Model.View_SitePerson_Person> getDataLists = from x in db.View_SitePerson_Person private static IQueryable<Model.View_SitePerson_Person> getDataLists = from x in Funs.DB.View_SitePerson_Person
select x; select x;
/// <summary> /// <summary>
@ -42,6 +41,7 @@ namespace BLL
/// <returns></returns> /// <returns></returns>
public static IEnumerable getListData(string projetcId, string unitId, string workPostId, string name, string idCard, string states, Grid Grid1) public static IEnumerable getListData(string projetcId, string unitId, string workPostId, string name, string idCard, string states, Grid Grid1)
{ {
Model.SGGLDB db = Funs.DB;
IQueryable<Model.View_SitePerson_Person> getDataList = getDataLists.OrderBy(x => x.ProjectId).ThenBy(x => x.UnitId); IQueryable<Model.View_SitePerson_Person> getDataList = getDataLists.OrderBy(x => x.ProjectId).ThenBy(x => x.UnitId);
if (!string.IsNullOrEmpty(projetcId) && projetcId != Const._Null) if (!string.IsNullOrEmpty(projetcId) && projetcId != Const._Null)
{ {
@ -113,7 +113,7 @@ namespace BLL
/// <summary> /// <summary>
/// 定义变量 /// 定义变量
/// </summary> /// </summary>
private static IQueryable<Model.View_SitePerson_Person> getPersonLists = from x in db.View_SitePerson_Person select x; private static IQueryable<Model.View_SitePerson_Person> getPersonLists = from x in Funs.DB.View_SitePerson_Person select x;
/// <summary> /// <summary>
/// 获取分页列表 /// 获取分页列表