Browse Source

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

master
zhaoy 5 months ago
parent
commit
9e8c62ab76
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      BPA.SAAS.KitChenManage.Application/Device/Services/DevicePushRecodeService.cs

+ 1
- 1
BPA.SAAS.KitChenManage.Application/Device/Services/DevicePushRecodeService.cs View File

@@ -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,


Loading…
Cancel
Save