You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
482 B
Java

package com.ruoyi.system.mapper;
import com.ruoyi.system.domain.TWechatUser;
import tk.mybatis.mapper.common.Mapper;
public interface TWechatUserMapper extends Mapper<TWechatUser> {
int insert(TWechatUser record);
int insertSelective(TWechatUser record);
TWechatUser selectUserByPrimaryKey(Long id);
TWechatUser selectWechatUserByOpenid(String openid);
int updateByPrimaryKeySelective(TWechatUser record);
int updateByPrimaryKey(TWechatUser record);
}