This commit is contained in:
李超 2026-04-23 09:36:47 +08:00
parent c920111dad
commit da4f6b1b4a
1 changed files with 2 additions and 2 deletions

View File

@ -67,13 +67,13 @@ namespace BLL
return null;
}
getDataList = SortConditionHelper.SortingAndPaging(getDataList, Grid1.SortField, Grid1.SortDirection, Grid1.PageIndex, Grid1.PageSize);
return from x in getDataList
return (from x in getDataList
select new
{
x.CheckingId, x.ProjectId, x.UnitId, x.UnitName, x.PersonId,
x.PersonName, x.CardNo, x.IdentityCard, x.WorkAreaId, x.WorkAreaName,
x.IntoOut, x.IntoOutTime, x.Address,
};
}).ToList();
}
#endregion