|  |  | 
 |  |  | package com.dy.pipIrrGlobal.daoRm; | 
 |  |  |  | 
 |  |  | import com.baomidou.mybatisplus.core.mapper.BaseMapper; | 
 |  |  | import com.dy.pipIrrGlobal.pojoRm.RmManureLast; | 
 |  |  | import com.dy.pipIrrGlobal.voRm.VoManure; | 
 |  |  | import org.apache.ibatis.annotations.Mapper; | 
 |  |  | import org.apache.ibatis.annotations.Param; | 
 |  |  |  | 
 |  |  | import java.util.List; | 
 |  |  | 
 |  |  |  * @Date: 2025/6/25 10:03 | 
 |  |  |  * @Description | 
 |  |  |  */ | 
 |  |  | public interface RmManureLastMapper { | 
 |  |  | @Mapper | 
 |  |  | public interface RmManureLastMapper extends BaseMapper<RmManureLast> { | 
 |  |  |     int deleteByPrimaryKey(Long id); | 
 |  |  |  | 
 |  |  |     int insert(RmManureLast record); | 
 |  |  | 
 |  |  |      */ | 
 |  |  |     List<VoManure> selectSome(Map<?, ?> params); | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 根据指定条件查询记录 | 
 |  |  |      * @param manureId | 
 |  |  |      * @return | 
 |  |  |      */ | 
 |  |  |     List<VoManure> selectSomeByManureId(@Param("manureId") Long manureId); | 
 |  |  |  | 
 |  |  |     int updateByPrimaryKeySelective(RmManureLast record); | 
 |  |  |  | 
 |  |  |     int updateByPrimaryKey(RmManureLast record); |