liurunyu
3 天以前 fa40a38ac0c25ada4bf554e742862fb2200c8a78
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
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;
import java.util.Map;
 
/**
 * @Author: liurunyu
 * @Date: 2025/6/25 10:03
 * @Description
 */
@Mapper
public interface RmManureLastMapper extends BaseMapper<RmManureLast> {
    int deleteByPrimaryKey(Long id);
 
    int insert(RmManureLast record);
 
    int insertSelective(RmManureLast record);
 
    RmManureLast selectByPrimaryKey(Long id);
 
    List<RmManureLast> selectRmManureLast(@Param("stManureId") Long stManureId) ;
 
    /**
     * 根据指定条件查询记录数量
     * @param params
     * @return
     */
    Long selectCount(Map<?, ?> params);
 
    /**
     * 根据指定条件查询记录
     * @param params
     * @return
     */
    List<VoManure> selectSome(Map<?, ?> params);
 
    /**
     * 根据指定条件查询记录
     * @param manureId
     * @return
     */
    List<VoManure> selectSomeByManureId(@Param("manureId") Long manureId);
 
    int updateByPrimaryKeySelective(RmManureLast record);
 
    int updateByPrimaryKey(RmManureLast record);
}