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