| | |
| | | using System.Linq; |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | | using WIDESEAWCS_Core; |
| | | using WIDESEAWCS_Core.BaseServices; |
| | | using WIDESEAWCS_DTO.BasicInfo; |
| | | using WIDESEAWCS_Model.Models; |
| | | |
| | | namespace WIDESEAWCS_IBasicInfoService |
| | |
| | | public interface IRouterService : IService<Dt_Router> |
| | | { |
| | | List<Dt_Router> QueryNextRoutes(string startPosi, string endPosi); |
| | | |
| | | List<string> QueryAllPositions(string deviceCode); |
| | | |
| | | List<dynamic> GetAllWholeRouters(); |
| | | |
| | | WebResponseContent AddRouters(List<RoutersAddDTO> routersAddDTOs, int routerType); |
| | | } |
| | | } |