浏览代码

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

master
zhaoy 5 个月前
父节点
当前提交
9e8c62ab76
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      BPA.SAAS.KitChenManage.Application/Device/Services/DevicePushRecodeService.cs

+ 1
- 1
BPA.SAAS.KitChenManage.Application/Device/Services/DevicePushRecodeService.cs 查看文件

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


正在加载...
取消
保存