| | |
| | | using WIDESEAWCS_Core.Enums; |
| | | using WIDESEAWCS_Core.Helper; |
| | | using WIDESEAWCS_DTO.BasicInfo; |
| | | using WIDESEAWCS_IBasicInfoService; |
| | | using WIDESEAWCS_Model.Models; |
| | | using WIDESEAWCS_QuartzJob.Models; |
| | | using WIDESEAWCS_QuartzJob.Repository; |
| | | using WIDESEAWCS_QuartzJob.Service; |
| | | |
| | | namespace WIDESEAWCS_Server.Controllers.BasicInfo |
| | | { |
| | |
| | | WebResponseContent content = new(); |
| | | try |
| | | { |
| | | List<dynamic> dynamics = Service.GetAllWholeRouters(); |
| | | List<object> dynamics = Service.GetAllWholeRouters(); |
| | | |
| | | content = WebResponseContent.Instance.OK(data: dynamics); |
| | | } |