blob: af94d2766dd4e5e6f18f632d4fd9fc57cddf7d36 [file] [log] [blame]
package com.example.g8backend.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.example.g8backend.entity.User;
import org.apache.ibatis.annotations.Param;
public interface IUserService extends IService<User> {
User getUserByName(@Param("name") String name);
User getUserByEmail(@Param("email") String email);
User getUserByPasskey(@Param("passkey") String passkey);
}