liurunyu
6 天以前 4efc605092f68311876299290a33697ebbfd3a5d
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
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<RmManureLast> selectRmManureLast(@Param("stManureId") Long stManureId) ;
 
    int updateByPrimaryKeySelective(RmManureLast record);
 
    int updateByPrimaryKey(RmManureLast record);
}