mirror of
https://gitee.com/bookshelfplus/bookshelfplus
synced 2025-09-25 19:05:14 +08:00
71 lines
2.1 KiB
Java
71 lines
2.1 KiB
Java
package plus.bookshelf.Dao.Mapper;
|
||
|
||
import org.springframework.stereotype.Repository;
|
||
import plus.bookshelf.Dao.DO.ThirdPartyUserAuthDO;
|
||
|
||
@Repository // 添加这个注解,Autowired的时候idea就不会报错了
|
||
public interface ThirdPartyUserAuthDOMapper {
|
||
/**
|
||
* This method was generated by MyBatis Generator.
|
||
* This method corresponds to the database table third_party_user_auth_relation
|
||
*
|
||
* @mbg.generated
|
||
*/
|
||
int deleteByPrimaryKey(Integer id);
|
||
|
||
/**
|
||
* This method was generated by MyBatis Generator.
|
||
* This method corresponds to the database table third_party_user_auth_relation
|
||
*
|
||
* @mbg.generated
|
||
*/
|
||
int insert(ThirdPartyUserAuthDO record);
|
||
|
||
/**
|
||
* This method was generated by MyBatis Generator.
|
||
* This method corresponds to the database table third_party_user_auth_relation
|
||
*
|
||
* @mbg.generated
|
||
*/
|
||
int insertSelective(ThirdPartyUserAuthDO record);
|
||
|
||
/**
|
||
* This method was generated by MyBatis Generator.
|
||
* This method corresponds to the database table third_party_user_auth_relation
|
||
*
|
||
* @mbg.generated
|
||
*/
|
||
ThirdPartyUserAuthDO selectByPrimaryKey(Integer id);
|
||
|
||
/**
|
||
* This method was generated by MyBatis Generator.
|
||
* This method corresponds to the database table third_party_user_auth_relation
|
||
*
|
||
* @mbg.generated
|
||
*/
|
||
int updateByPrimaryKeySelective(ThirdPartyUserAuthDO record);
|
||
|
||
/**
|
||
* This method was generated by MyBatis Generator.
|
||
* This method corresponds to the database table third_party_user_auth_relation
|
||
*
|
||
* @mbg.generated
|
||
*/
|
||
int updateByPrimaryKey(ThirdPartyUserAuthDO record);
|
||
|
||
/**
|
||
* This method was generated by MyBatis Generator.
|
||
* This method corresponds to the database table third_party_user_auth_relation
|
||
*
|
||
* @mbg.generated
|
||
*/
|
||
ThirdPartyUserAuthDO selectByThirdPartyUserId(Integer id);
|
||
|
||
/**
|
||
* This method was generated by MyBatis Generator.
|
||
* This method corresponds to the database table third_party_user_auth_relation
|
||
*
|
||
* @mbg.generated
|
||
*/
|
||
ThirdPartyUserAuthDO selectByUserId(Integer id);
|
||
} |