exam-week2/yuan-auth/src/main/java/com/bwie/auth/service/AuthService.java

19 lines
402 B
Java
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package com.bwie.auth.service;
import com.bwie.common.domain.User;
import com.bwie.common.domain.response.JwtResponse;
import com.bwie.common.result.Result;
/**
* @Author蓬叁
* @Packagecom.bwie.auth.service
* @Projectmaven-week2-exam
* @nameAuthService
* @Date2024/7/30 上午9:28
*/
public interface AuthService {
Result<JwtResponse> login(User user);
User info();
}