liurunyu
2024-07-05 b83f639362ae959de55900d14d132585cd72a90d
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
package com.dy.pipIrrGlobal.daoRm;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.dy.pipIrrGlobal.pojoRm.RmTimingReportLast;
import org.apache.ibatis.annotations.Mapper;
 
import java.util.List;
 
/**
 * @author ZhuBaoMin
 * @date 2024-06-14 15:17
 * @LastEditTime 2024-06-14 15:17
 * @Description
 */
 
@Mapper
public interface RmTimingReportLastMapper extends BaseMapper<RmTimingReportLast> {
    int deleteByPrimaryKey(Long id);
 
    int insert(RmTimingReportLast record);
 
    int insertSelective(RmTimingReportLast record);
 
    RmTimingReportLast selectByPrimaryKey(Long id);
 
    int updateByPrimaryKeySelective(RmTimingReportLast record);
 
    int updateByPrimaryKey(RmTimingReportLast record);
 
    /**
     * 根据阀控器地址获取定点上报最新数据
     * @param intakeId
     * @return
     */
    List<RmTimingReportLast> getRmTimingReportLast(Long intakeId);
}