DESKTOP-9BNTV8O
2025-03-10 137bb18abe92045492294e0f8303af3103a37b93
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 });
            }
        }
    }
}