Administrator
2024-01-05 8ffdb9e3170e5ca530b652cb4600046bfb08a925
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
package com.dy.pipIrrGlobal.daoPr;
 
import com.dy.pipIrrGlobal.pojoPr.PrFlowMonitoring;
import org.apache.ibatis.annotations.Param;
 
/**
 * @author ZhuBaoMin
 * @date 2024-01-04 16:02
 * @LastEditTime 2024-01-04 16:02
 * @Description
 */
public interface PrFlowMonitoringMapper {
    int deleteByPrimaryKey(Long id);
 
    int insert(PrFlowMonitoring record);
 
    int insertSelective(PrFlowMonitoring record);
 
    PrFlowMonitoring selectByPrimaryKey(Long id);
 
    int updateByPrimaryKeySelective(PrFlowMonitoring record);
 
    int updateByPrimaryKey(PrFlowMonitoring record);
 
    /**
     * 根据监测站编号删除监测站
     * @param flowMonitoringId
     * @return
     */
    Integer deleteFlowMonitoringById(@Param("flowMonitoringId") Long flowMonitoringId);
 
    /**
     * 根据监测站编号获取未删除的监测站数量
     * @param flowMonitoringId
     * @return
     */
    Integer getRecordCountOfFlowMonitoring(@Param("flowMonitoringId") Long flowMonitoringId);
}