package com.dy.pipIrrGlobal.daoRm; import com.dy.pipIrrGlobal.pojoRm.RmManureLast; 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 RmSoilLastMapper { int deleteByPrimaryKey(Long id); int insert(RmSoilLast record); int insertSelective(RmSoilLast record); RmSoilLast selectByPrimaryKey(Long id); List selectRmSoilLast(@Param("stSoilId") Long stSoilId) ; int updateByPrimaryKeySelective(RmSoilLast record); int updateByPrimaryKey(RmSoilLast record); }