lxw
2022-09-20 12a1760a8e69fa89a272f87c9b2d143e894a5308
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.whyc.mapper;
 
import com.whyc.pojo.StationInfo;
 
import java.util.List;
 
public interface StationInfoMapper extends CustomMapper<StationInfo>{
    //查询出最大的台站id
    Integer selectMaxId();
 
    //根据机房名称当前机房的机房id
    Integer selectIdByName(String stationName);
 
    //找出根节点是stationName1的所有机房id
    List<StationInfo> selectIdByName1(String stationName1);
 
    //找出根节点是stationName1,stationName2的所有机房id
    List<StationInfo> selectIdByName2(String stationName1, String stationName2);
 
    List<StationInfo> selectIdByName3(String stationName1, String stationName2, String stationName3);
}