1
wankeda
2025-03-22 867aba2636e34a1050b1c4c84bbe78cc9c39b553
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Basic/CachePointController.cs
@@ -21,11 +21,23 @@
            return Service.GetEndPoints();
        }
       //查询缓存架状态
        //查询缓存架状态
        [HttpPost, Route("GetHCJStaue"), AllowAnonymous]
        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);
        }
    }
}