lxw
2023-03-07 5b98daea3ac8032b59ee2f2692ff45fa1bf84bbd
1
2
3
4
5
6
7
8
9
10
11
package com.whyc.mapper;
 
import com.whyc.pojo.StationInf;
 
import java.util.List;
 
public interface StationInfMapper extends CustomMapper<StationInf> {
 
    //站点实时数据推送
    List<StationInf> getSystemAll(int userId);
}