ソースを参照

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

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,


読み込み中…
キャンセル
保存