lyh
9 小时以前 78aeb8a8c97a884a640d46755e4be706bde48b7d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.lxzn.api.auth;
 
import com.lxzn.framework.domain.auth.request.LoginRequest;
import com.lxzn.framework.domain.auth.response.JwtResult;
import com.lxzn.framework.domain.auth.response.LoginResult;
import com.lxzn.framework.model.response.ResponseResult;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
 
/**
 * Created by Administrator.
 */
@Api(value = "用户认证",description = "用户认证接口")
public interface AuthControllerApi {
    @ApiOperation("登录")
    LoginResult login(LoginRequest loginRequest);
 
    @ApiOperation("退出")
    ResponseResult logout();
 
    @ApiOperation("查询用户jwt令牌")
    JwtResult userJwt();
}