yangpeixing
2026-03-27 03214febb52b6e0f6f03248d3ef3cbe08967a116
WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Basic/LocationInfoController.cs
@@ -58,5 +58,20 @@
            return Service.LocationDisableStatus(keys); ;
        }
        [HttpPost, Route("LocationRelease"),AllowAnonymous]
        public WebResponseContent LocationRelease([FromBody] List<string> locationCodes)
        {
            return Service.LocationRelease(locationCodes);
        }
        /// <summary>
        /// 货位预警
        /// </summary>
        /// <returns></returns>
        [HttpPost, Route("LocationWarning"), AllowAnonymous]
        public WebResponseContent LocationWarning()
        {
            return Service.LocationWarning();
        }
    }
}