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);
|
|
}
|