package com.goafanti.common.dao; import com.goafanti.common.model.UserInfo; import com.goafanti.user.bo.UserInfoBo; public interface UserInfoMapper { int deleteByPrimaryKey(String id); int insert(UserInfo record); int insertSelective(UserInfo record); UserInfo selectByPrimaryKey(String id); int updateByPrimaryKeySelective(UserInfo record); int updateByPrimaryKey(UserInfo record); UserInfo selectUserInfoByUserId(String uid); UserInfoBo selectUserInfoBoByUserId(String uid); }