18 lines
357 B
Java
18 lines
357 B
Java
package com.bwie.auth.service;
|
|
|
|
import com.bwie.common.domain.dto.UserDTO;
|
|
import com.bwie.common.domain.vo.UserJwt;
|
|
import com.bwie.common.result.Result;
|
|
|
|
/**
|
|
* @ClassName AuthService
|
|
* @Description 描述
|
|
* @Author XingHua.Han
|
|
* @Date 2023/12/5 9:30
|
|
*/
|
|
public interface AuthService {
|
|
Result<UserJwt> login(UserDTO userDTO);
|
|
|
|
Result info();
|
|
}
|