package com.dy.pipIrrGlobal.daoSe; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.dy.pipIrrGlobal.pojoSe.SeManagementCard; import org.apache.ibatis.annotations.Mapper; /** * @author ZhuBaoMin * @date 2025-06-24 16:47 * @LastEditTime 2025-06-24 16:47 * @Description */ @Mapper public interface SeManagementCardMapper extends BaseMapper { int deleteByPrimaryKey(Long id); int insert(SeManagementCard record); int insertSelective(SeManagementCard record); SeManagementCard selectByPrimaryKey(Long id); int updateByPrimaryKeySelective(SeManagementCard record); int updateByPrimaryKey(SeManagementCard record); }