1
2
3
4
5
6
7
8
9
10
11
12
13
| package service;
|
| import domain.DaStationCollection;
| import com.baomidou.mybatisplus.extension.service.IService;
|
| /**
| * @author Dell
| * @description 针对表【da_station_collection(过站采集)】的数据库操作Service
| * @createDate 2024-11-16 10:33:43
| */
| public interface DaStationCollectionService extends IService<DaStationCollection> {
|
| }
|
|