1
wankeda
2025-03-22 867aba2636e34a1050b1c4c84bbe78cc9c39b553
代码管理/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Basic/CachePointController.cs
@@ -26,6 +26,18 @@
        public WebResponseContent GetHCJStaue(string stationcode)
        {
            return Service.GetHCJStaue(stationcode);
        }
        [HttpPost,Route("UpdateHCJStaue"),AllowAnonymous]
        public WebResponseContent UpdateHCJStaue([FromBody]SaveModel saveModel)
        {
            return Service.UpdateHCJStaue(saveModel);
        }
        [HttpPost, Route("PrintStatusUp")]
        public WebResponseContent PrintStatusUp(string pointCode)
        {
            return Service.PrintStatusUp(pointCode);
        }
    }
}