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