src/main/java/com/whyc/mapper/CircleInfMapper.java
@@ -1,8 +1,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); }