| | |
| | | package com.dy.pipIrrGlobal.daoRm; |
| | | |
| | | import com.dy.pipIrrGlobal.pojoRm.RmWeatherLast; |
| | | import com.dy.pipIrrGlobal.voRm.VoWeather; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * @Author: liurunyu |
| | |
| | | |
| | | List<RmWeatherLast> selectRmWeatherLast(@Param("stWeatherId") Long stWeatherId) ; |
| | | |
| | | /** |
| | | * 根据指定条件查询记录数量 |
| | | * @param params |
| | | * @return |
| | | */ |
| | | Long selectCount(Map<?, ?> params); |
| | | |
| | | /** |
| | | * 根据指定条件查询记录 |
| | | * @param params |
| | | * @return |
| | | */ |
| | | List<VoWeather> selectSome(Map<?, ?> params); |
| | | |
| | | /** |
| | | * 根据指定条件查询记录 |
| | | * @param weatherId |
| | | * @return |
| | | */ |
| | | List<VoWeather> selectSomeByWeatherId(@Param("weatherId") Long weatherId); |
| | | |
| | | int updateByPrimaryKeySelective(RmWeatherLast record); |
| | | |
| | | int updateByPrimaryKey(RmWeatherLast record); |