任务单调整 更换设备模具产线 任务单操作记录

This commit is contained in:
2023-08-10 11:58:41 +08:00
parent 1bbb30f135
commit 4a81df87b0
11 changed files with 222 additions and 1 deletions

View File

@@ -233,5 +233,12 @@ namespace Tnb.EquipMgr
["list"] = list1,
});
}
[HttpPost]
public async Task<EqpEquipment> GetEntityByQrcode(Dictionary<string, string> dic)
{
string qrcode = dic["qrcode"];
return await _repository.GetSingleAsync(x => x.qrcode == qrcode);
}
}
}