wxw
2025-02-11 415e713b444fccc25e59ff0e1b5d72467ec20b54
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 });
            }
        }
    }
}