liurunyu
2024-01-12 d86a4a8cd8cf271514e892e992290b4d533a24e5
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.PrFlowmeter;
import org.apache.ibatis.annotations.Param;
 
/**
 * @author ZhuBaoMin
 * @date 2024-01-05 9:04
 * @LastEditTime 2024-01-05 9:04
 * @Description
 */
public interface PrFlowmeterMapper {
    int deleteByPrimaryKey(Long id);
 
    int insert(PrFlowmeter record);
 
    int insertSelective(PrFlowmeter record);
 
    PrFlowmeter selectByPrimaryKey(Long id);
 
    int updateByPrimaryKeySelective(PrFlowmeter record);
 
    int updateByPrimaryKey(PrFlowmeter record);
 
    /**
     * 据编号删除流量计
     * @param flowmeterId
     * @return
     */
    Integer deleteFlowmeterById(@Param("flowmeterId") Long flowmeterId);
 
    /**
     * 根据流量计编号获取未删除的流量计数量
     * @param flowmeterId
     * @return
     */
    Integer getRecordCountOfFlowmeter(@Param("flowmeterId") Long flowmeterId);
}