1
2
3
4
5
6
7
8
9
10
11
12
13
| package com.whyc.mapper;
|
| import com.whyc.pojo.RessetStation;
|
| import java.util.List;
|
| public interface RessetStationMapper extends CustomMapper<RessetStation>{
| //获取机房内阻定期
| List<RessetStation> getRessetStation();
|
| //根据机房id获取机房内阻定期
| RessetStation getDefaultRessetStationById(String stationId);
| }
|
|