| | |
| | | /** |
| | | * @author Administrator |
| | | * @description 针对表【air_data_nong_geng(农耕大气监测数据)】的数据库操作Mapper |
| | | * @createDate 2022-10-10 10:00:03 |
| | | * @createDate 2022-10-14 15:01:06 |
| | | * @Entity com.sandu.ximon.dao.domain.AirDataNongGeng |
| | | */ |
| | | @Mapper |
| | | public interface AirDataNongGengMapper extends BaseMapper<AirDataNongGeng> { |
| | | List<Long> listAirId(String keyword, Long userid); |
| | | List<Long> listAirId(String keyword, Long userid, String type); |
| | | |
| | | List<AirDataNongGengBo> listAirDataByIds(List<Long> airIdList); |
| | | |
| | | List<AirDataNongGengBo> historyData(String mac); |
| | | } |
| | | |
| | | |