1
hutongqing
2025-01-24 2aef482fa7431fb47eef94081ff23ec220f89820
WIDESEAWCS_Server/WIDESEAWCS_Server/Controllers/BasicInfo/RouterController.cs
@@ -51,7 +51,7 @@
            WebResponseContent content = new();
            try
            {
                List<dynamic> dynamics = Service.GetAllWholeRouters();
                List<object> dynamics = Service.GetAllWholeRouters();
                content = WebResponseContent.Instance.OK(data: dynamics);
            }
@@ -109,5 +109,11 @@
        {
            return Service.AddRouters(routersAddDTOs, routerType);
        }
        [HttpPost, Route("QueryNextRoutesByType"), AllowAnonymous]
        public List<Dt_Router> QueryNextRoutes(string startPosi, string endPosi, int routeType)
        {
            return Service.QueryNextRoutes(startPosi, endPosi, routeType);
        }
    }
}