whyclxw
2025-05-28 e16302f9d475c7cc4dd18c5abf1a23cb5502e362
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);
}