package com.dy.pipIrrGlobal.daoRm; import com.dy.pipIrrGlobal.pojoRm.RmSoilDay; import com.dy.pipIrrGlobal.pojoRm.RmSoilLast; import org.apache.ibatis.annotations.Param; import java.util.List; /** * @Author: liurunyu * @Date: 2025/6/25 10:04 * @Description */ public interface RmSoilDayMapper { int deleteByPrimaryKey(Long id); int insert(RmSoilDay record); int insertSelective(RmSoilDay record); RmSoilDay selectByPrimaryKey(Long id); List selectRmSoilDay(@Param("stSoilId") Long stSoilId, @Param("ymd") Integer ymd) ; int updateByPrimaryKeySelective(RmSoilDay record); int updateByPrimaryKey(RmSoilDay record); }