Ver código fonte

更改获取设备商品查询条件遗漏问题

master
zhaoy 5 meses atrás
pai
commit
9e8c62ab76
1 arquivos alterados com 1 adições e 1 exclusões
  1. +1
    -1
      BPA.SAAS.KitChenManage.Application/Device/Services/DevicePushRecodeService.cs

+ 1
- 1
BPA.SAAS.KitChenManage.Application/Device/Services/DevicePushRecodeService.cs Ver arquivo

@@ -344,7 +344,7 @@ namespace BPA.SAAS.KitChenManage.Application.Device.Services
{
var result = new List<Goods>();

result = await _db.Queryable<BPA_DeviceGoods>()
result = await _db.Queryable<BPA_DeviceGoods>().Where(x=>x.DeviceId==deviceId)
.Select(x => new Goods()
{
GoodsId = x.GoodsId,


Carregando…
Cancelar
Salvar