| | |
| | | package com.ots.project.system.user.mapper; |
| | | import com.ots.project.system.user.domain.User; |
| | | import org.apache.ibatis.annotations.Options; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | public interface UserMapper { |
| | |
| | | User checkPhoneUnique(String phonenumber); |
| | | |
| | | User checkEmailUnique(String email); |
| | | |
| | | int updateHintState(@Param("userId")String userId,@Param("type") Integer type); |
| | | |
| | | /** |
| | | * 根据tokenId查询回调url |
| | | * @param tokenId |
| | | * @return |
| | | */ |
| | | String selectCallbackUrlByTokenId(@Param("tokenId") String tokenId); |
| | | } |