feiyu02
2023-10-19 f5d149a03739086d34c4dc2eb924bcf0e4330521
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.flightfeather.monitor.mapper.dustexception;
 
 
import com.flightfeather.monitor.pojo.DustSiteData;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Select;
 
import java.util.List;
 
@Mapper
public interface OnlineAnalysisMapper {
    /*读取指定时间段的数据*/
    @Select("select * from ja_t_dust_site_data_info where lst between #{beginTime} and #{endTime}")
    public List<DustSiteData> getDustData(String beginTime,String endTime);
}