liurunyu
4 天以前 fa40a38ac0c25ada4bf554e742862fb2200c8a78
pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoRm/RmWeatherHistoryMapper.java
@@ -1,13 +1,21 @@
package com.dy.pipIrrGlobal.daoRm;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.dy.pipIrrGlobal.pojoRm.RmSoilLast;
import com.dy.pipIrrGlobal.pojoRm.RmWeatherHistory;
import com.dy.pipIrrGlobal.voRm.VoWeather;
import org.apache.ibatis.annotations.Mapper;
import java.util.List;
import java.util.Map;
/**
 * @Author: liurunyu
 * @Date: 2025/6/25 10:39
 * @Description
 */
public interface RmWeatherHistoryMapper {
@Mapper
public interface RmWeatherHistoryMapper extends BaseMapper<RmWeatherHistory> {
    int deleteByPrimaryKey(Long id);
    int insert(RmWeatherHistory record);
@@ -16,6 +24,20 @@
    RmWeatherHistory selectByPrimaryKey(Long id);
    /**
     * 根据指定条件查询记录数量
     * @param params
     * @return
     */
    Long selectCount(Map<?, ?> params);
    /**
     * 根据指定条件查询记录
     * @param params
     * @return
     */
    List<VoWeather> selectSome(Map<?, ?> params);
    int updateByPrimaryKeySelective(RmWeatherHistory record);
    int updateByPrimaryKey(RmWeatherHistory record);