lxw
2022-09-20 9a3160682c1b0920ff6b69390cbadc535690f8ee
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<Integer> selectIdByName1(String stationName1);
 
    //找出根节点是stationName1,stationName2的所有机房id
    List<Integer> selectIdByName2(String stationName1, String stationName2);
 
    List<Integer> selectIdByName3(String stationName1, String stationName2, String stationName3);
}