zhaoy 8 månader sedan
förälder
incheckning
0d6f9a1326
1 ändrade filer med 2 tillägg och 1 borttagningar
  1. +2
    -1
      BPA.SAAS.Manage.Application/Device/Services/DeviceService.cs

+ 2
- 1
BPA.SAAS.Manage.Application/Device/Services/DeviceService.cs Visa fil

@@ -58,8 +58,9 @@ namespace BPA.SAAS.Manage.Application.Device.Services
.Mapper(x =>
{
var Vesion = _db.Queryable<BPA_ProductVesion>().Where(c => c.Id == x.ProductVersionId).First();
var Stop=dataStore?.Where(f => f.Id == x.StopId).FirstOrDefault();
x.ProductVersionName = Vesion?.Vesion;
x.StopName= dataStore?.Where(f=>f.Id==x.StopId).First()?.Name;
x.StopName= Stop?.Name;
})
.ToPageListAsync(inputDto.Current, inputDto.PageSize, total);
return new PageUtil()


Laddar…
Avbryt
Spara