package com.dy.pipIrrGlobal.daoSe; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.dy.pipIrrGlobal.pojoSe.SeCardOperate; import org.apache.ibatis.annotations.Mapper; /** * @author ZhuBaoMin * @date 2024-01-18 19:28 * @LastEditTime 2024-01-18 19:28 * @Description */ @Mapper public interface SeCardOperateMapper extends BaseMapper { int deleteByPrimaryKey(Long id); int insert(SeCardOperate record); int insertSelective(SeCardOperate record); SeCardOperate selectByPrimaryKey(Long id); int updateByPrimaryKeySelective(SeCardOperate record); int updateByPrimaryKey(SeCardOperate record); }