lxw
2023-01-10 6a2c8974dffe37aa029e3850f97901e214bc7d2a
1
2
3
4
5
6
7
8
9
10
package com.whyc.mapper;
 
import com.whyc.dto.Station.StationName1;
 
import java.util.List;
 
public interface StationMapper extends CustomMapper<StationName1>{
    //查询台站列表
    List<StationName1> getStation();
}