| | |
| | | package com.whyc.mapper; |
| | | |
| | | import com.whyc.pojo.StationInf; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | //查询指定机房信息 |
| | | StationInf getSystemSkipStation(int userId, String stationId); |
| | | |
| | | List<StationInf> getStationInfList(int userId); |
| | | |
| | | List<StationInf> getStationMapAndWorkState(int userId); |
| | | |
| | | List<String> getStationName1ByUserId(@Param("userId") Integer userId); |
| | | |
| | | List<String> getStationName2ByUseridAndSt1(@Param("userId") Integer userId, @Param("stationName1") String stationName1); |
| | | |
| | | List<String> getStationName5ByUseridAndSt1AndSt2(@Param("stationName1") String stationName1, @Param("stationName2") String stationName2, @Param("userId") Integer userId); |
| | | |
| | | //穿梭框查询所有的站点 |
| | | List<StationInf> searchShuttle(long uId); |
| | | |
| | | List<StationInf> searchStationAll(String stationName1, String stationName2, String stationName5, String nodeStation, String stationType, String uId); |
| | | |
| | | //站点信息 |
| | | List<StationInf> getSateAnalysis(int userId); |
| | | |
| | | //找最大的stationid |
| | | String getMaxStationId(); |
| | | |
| | | //查询所有的站点电压等级 |
| | | List<String> searStationType(); |
| | | |
| | | //查询最大的自增标识同一机房的标识 |
| | | int getMaxTogetherFlag(); |
| | | |
| | | //根据statidonId去查同一机房的标识 |
| | | int getTogetherFlag(String stationIdTogether); |
| | | |
| | | //添加关联时下拉显示 |
| | | List<StationInf> getTogetherStations(@Param("stationName1") String stationName1, @Param("stationName2") String stationName2, @Param("stationName5") String stationName5); |
| | | } |