1
dengjunjie
2026-03-12 c0ac5d4281a2c83f794bf6f0e86291c4d695e53c
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/Controllers/WMS/WMSController.cs
@@ -100,9 +100,9 @@
        /// <param name="AreaCode">区域号</param>
        /// <returns></returns>
        [HttpGet, HttpPost, Route("QueryStation"), AllowAnonymous]
        public WMSReturn QueryStation(string AreaCode)
        public WMSReturn QueryStation([FromBody] WMSGetLocationInfo getLocationInfo)
        {
            WebResponseContent content = _taskService.LocationInquiry(AreaCode);
            WebResponseContent content = _taskService.LocationInquiry(getLocationInfo);
            return WMSReturnMethod.ReturnWMS(content);
        }
    }