WechatBindMapper.java 568 B

12345678910111213141516171819202122232425
  1. package com.mirage.mirageservice.mapper.mysql;
  2. import org.apache.ibatis.annotations.Param;
  3. import com.mirage.mirageservice.domain.WechatBind;
  4. /**
  5. * Created by hzlinhai on 2025/8/26.
  6. */
  7. public interface WechatBindMapper {
  8. int deleteByPrimaryKey(Integer id);
  9. int insert(WechatBind record);
  10. int insertSelective(WechatBind record);
  11. WechatBind selectByPrimaryKey(Integer id);
  12. int updateByPrimaryKeySelective(WechatBind record);
  13. int updateByPrimaryKey(WechatBind record);
  14. WechatBind selectOneByOpenid(@Param("openid")String openid);
  15. }