Demo
2024-02-02 89b2a1e44a4c4a244eb885c5f8dd802147dd03ee
Wms/Wms/Controllers/BllAsnController.cs
@@ -862,6 +862,21 @@
            }
        }
        [HttpGet]
        public IActionResult GetLabelBoxModel(int id)
        {
            try
            {
                var list = _labelBox.GetLabelBoxModel(id);
                return Ok(new { code = 0, msg = "箱码模板信息", data = list });
            }
            catch (Exception e)
            {
                return Ok(new { code = 1, msg = e.Message });
            }
        }
        #endregion
    }