Wms/Wms/Controllers/PdaAsnController.cs
@@ -410,5 +410,27 @@ } #endregion #region 原料组托 /// <summary> /// 根据箱码获取标签箱码信息 /// </summary> /// <param name="model">BoxNo:箱号</param> /// <returns></returns> [HttpPost] public IActionResult GetBindBoxInfos(BoxInfoVm model) { try { var models = _PdaAsnSvc.GetBindBoxInfos(model); return Ok(new { code = 0, msg = "标签箱码信息", data = models }); } catch (Exception e) { return Ok(new { code = 1, msg = e.Message }); } } #endregion } }