19 lines
402 B
Java
19 lines
402 B
Java
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:蓬叁
|
||
* @Package:com.bwie.auth.service
|
||
* @Project:maven-week2-exam
|
||
* @name:AuthService
|
||
* @Date:2024/7/30 上午9:28
|
||
*/
|
||
public interface AuthService {
|
||
Result<JwtResponse> login(User user);
|
||
|
||
User info();
|
||
}
|