package com.dy.pipIrrGlobal.daoSe;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.dy.pipIrrGlobal.pojoSe.SeVirtualCard;
|
import org.apache.ibatis.annotations.Mapper;
|
|
/**
|
* @author ZhuBaoMin
|
* @date 2024-03-05 20:45
|
* @LastEditTime 2024-03-05 20:45
|
* @Description
|
*/
|
|
@Mapper
|
public interface SeVirtualCardMapper extends BaseMapper<SeVirtualCard> {
|
int deleteByPrimaryKey(Long id);
|
|
int insert(SeVirtualCard record);
|
|
int insertSelective(SeVirtualCard record);
|
|
SeVirtualCard selectByPrimaryKey(Long id);
|
|
int updateByPrimaryKeySelective(SeVirtualCard record);
|
|
int updateByPrimaryKey(SeVirtualCard record);
|
|
}
|