Wms/Wms/Controllers/BllQualityController.cs
@@ -293,5 +293,25 @@ } } #endregion /// <summary> /// 获取库存批次号集合 /// </summary> /// <returns></returns> [HttpGet] public IActionResult GetLotNoList() { try { var bolls = _qualityServer.GetLotNoList(); return Ok(new { code = 0, msg = "批次号集合", data = bolls }); } catch (Exception e) { return Ok(new { code = 1, msg = e.Message }); } } } }