| 12345678910111213141516171819202122232425 |
- package com.mirage.mirageservice.mapper.mysql;
- import org.apache.ibatis.annotations.Param;
- import com.mirage.mirageservice.domain.WechatBind;
- /**
- * Created by hzlinhai on 2025/8/26.
- */
- public interface WechatBindMapper {
- int deleteByPrimaryKey(Integer id);
- int insert(WechatBind record);
- int insertSelective(WechatBind record);
- WechatBind selectByPrimaryKey(Integer id);
- int updateByPrimaryKeySelective(WechatBind record);
- int updateByPrimaryKey(WechatBind record);
- WechatBind selectOneByOpenid(@Param("openid")String openid);
- }
|