package com.dy.pmsGlobal.daoMp; import com.dy.pmsGlobal.pojoMp.MpOpenId; import org.apache.ibatis.annotations.Mapper; /** * @author User * @description 针对表【mp_open_id】的数据库操作Mapper * @createDate 2024-12-25 17:22:43 * @Entity com.dy.pmsGlobal.pojoMp.MpOpenId */ @Mapper public interface MpOpenIdMapper { int deleteByPrimaryKey(Long id); int insert(MpOpenId record); int insertSelective(MpOpenId record); MpOpenId selectByPrimaryKey(Long id); int updateByPrimaryKeySelective(MpOpenId record); int updateByPrimaryKey(MpOpenId record); MpOpenId getInfoByOpenId(String openid); }