mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-22 20:15:06 +08:00
64 lines
1.4 KiB
Java
64 lines
1.4 KiB
Java
|
|
package com.jsowell.pile.mapper;
|
||
|
|
|
||
|
|
import java.util.List;
|
||
|
|
|
||
|
|
import com.jsowell.pile.domain.PileAuthCard;
|
||
|
|
import org.springframework.stereotype.Repository;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 充电站鉴权卡Mapper接口
|
||
|
|
*
|
||
|
|
* @author jsowell
|
||
|
|
* @date 2023-03-16
|
||
|
|
*/
|
||
|
|
@Repository
|
||
|
|
public interface PileAuthCardMapper {
|
||
|
|
/**
|
||
|
|
* 查询充电站鉴权卡
|
||
|
|
*
|
||
|
|
* @param id 充电站鉴权卡主键
|
||
|
|
* @return 充电站鉴权卡
|
||
|
|
*/
|
||
|
|
public PileAuthCard selectPileAuthCardById(Long id);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 查询充电站鉴权卡列表
|
||
|
|
*
|
||
|
|
* @param pileAuthCard 充电站鉴权卡
|
||
|
|
* @return 充电站鉴权卡集合
|
||
|
|
*/
|
||
|
|
public List<PileAuthCard> selectPileAuthCardList(PileAuthCard pileAuthCard);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 新增充电站鉴权卡
|
||
|
|
*
|
||
|
|
* @param pileAuthCard 充电站鉴权卡
|
||
|
|
* @return 结果
|
||
|
|
*/
|
||
|
|
public int insertPileAuthCard(PileAuthCard pileAuthCard);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 修改充电站鉴权卡
|
||
|
|
*
|
||
|
|
* @param pileAuthCard 充电站鉴权卡
|
||
|
|
* @return 结果
|
||
|
|
*/
|
||
|
|
public int updatePileAuthCard(PileAuthCard pileAuthCard);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 删除充电站鉴权卡
|
||
|
|
*
|
||
|
|
* @param id 充电站鉴权卡主键
|
||
|
|
* @return 结果
|
||
|
|
*/
|
||
|
|
public int deletePileAuthCardById(Long id);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 批量删除充电站鉴权卡
|
||
|
|
*
|
||
|
|
* @param ids 需要删除的数据主键集合
|
||
|
|
* @return 结果
|
||
|
|
*/
|
||
|
|
public int deletePileAuthCardByIds(Long[] ids);
|
||
|
|
}
|