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