package com.dy.pipIrrGlobal.daoRm; import com.dy.pipIrrGlobal.pojoRm.RmWeatherLast; import org.apache.ibatis.annotations.Param; import java.util.List; /** * @Author: liurunyu * @Date: 2025/6/25 10:39 * @Description */ public interface RmWeatherLastMapper { int deleteByPrimaryKey(Long id); int insert(RmWeatherLast record); int insertSelective(RmWeatherLast record); RmWeatherLast selectByPrimaryKey(Long id); List selectRmWeatherLast(@Param("stWeatherId") Long stWeatherId) ; int updateByPrimaryKeySelective(RmWeatherLast record); int updateByPrimaryKey(RmWeatherLast record); }