| | |
| | | package com.whyc.mapper; |
| | | |
| | | import com.whyc.dto.Station.Provice; |
| | | import com.whyc.dto.Statistic.StationStic; |
| | | import com.whyc.pojo.db_station.PowerInf; |
| | | import com.whyc.pojo.db_station.StationInf; |
| | | import org.apache.ibatis.annotations.Param; |
| | |
| | | List<PowerInf> getPowerByUid(@Param("uid") Integer uid, @Param("provice") String provice, @Param("city") String city, @Param("country") String country, @Param("stationName") String stationName); |
| | | //获取电压等级(下拉) |
| | | List<String> getStationTypeByUid(@Param("uid") Integer uid); |
| | | //站点信息统计 |
| | | List<StationInf> getStationStatistic(@Param("stic") StationStic stic); |
| | | } |