This commit is contained in:
2021-06-30 16:00:32 +08:00
parent 8bc3189f9f
commit 957d206c2b
8 changed files with 209 additions and 13 deletions
+2 -2
View File
@@ -779,7 +779,7 @@ namespace WebAPI.Controllers
var responeData = new Model.ResponeData();
try
{
responeData.data = from x in Funs.DB.SitePerson_Person_Bak
responeData.data = (from x in Funs.DB.SitePerson_Person_Bak
join y in Funs.DB.Base_Unit on x.UnitId equals y.UnitId
where x.ProjectId == projectId
&& !x.ExchangeTime.HasValue
@@ -806,7 +806,7 @@ namespace WebAPI.Controllers
x.ExchangeTime,
x.ExchangeTime2,
x.PhotoUrl,
};
}).Take(200).ToList();
}
catch (Exception ex)
{