1
2
3
4
5
6
7
8
9
10
11
12
| package com.whyc.mapper;
|
| import com.whyc.pojo.CircleInf;
|
| import java.util.List;
|
| public interface CircleInfMapper extends CustomMapper<CircleInf>{
| //获取最大动环设备id
| Integer getMaxDeviceId();
| //获取所有的动环信息
| List<CircleInf> getInfInStation(String stationId);
| }
|
|