Administrator
2023-12-15 2368b6f47ba2866e860c3476bb227572b94e3896
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
package com.dy.pipIrrGlobal.daoSe;
 
import com.dy.pipIrrGlobal.pojoSe.SeClientCard;
import org.apache.ibatis.annotations.Param;
 
/**
 * @author ZhuBaoMin
 * @date 2023/12/7 9:06
 * @LastEditTime 2023/12/7 9:06
 * @Description
 */
public interface SeClientCardMapper {
    int deleteByPrimaryKey(Long id);
 
    int insert(SeClientCard record);
 
    int insertSelective(SeClientCard record);
 
    SeClientCard selectByPrimaryKey(Long id);
 
    int updateByPrimaryKeySelective(SeClientCard record);
 
    int updateByPrimaryKey(SeClientCard record);
 
    /**
     * 依据水卡地址获取水卡编号(主键)
     * @param cardAddr
     * @return
     */
    Long getCardIdByAddr(@Param("cardAddr") String cardAddr);
 
}