whyclxw
2024-10-31 2ed0ce9b868a55e14c6df57695c8259734beb5ab
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);
}