whycxzp
2022-09-19 e3fe141d743f6c647d0637c94d2b085d36ea1af1
1
2
3
4
5
6
7
8
9
10
package com.whyc.mapper;
 
import com.whyc.pojo.StationInfo;
 
public interface StationInfoMapper extends CustomMapper<StationInfo>{
    //查询出最大的台站id
    int selectMaxId();
    //根据机房名称当前机房的机房id
    int selectIdByName(String stationName);
}