puzhibing
2023-06-30 f58cca364b731eac2d60a440ffaa804be3cd43fd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package com.stylefeng.guns.modular.system.controller.resp;
 
import com.fasterxml.jackson.annotation.JsonProperty;
 
import java.io.Serializable;
 
/**
 * 接收accessToken实体
 */
public class AccessTokenRespBody extends RespBody implements Serializable {
 
    /**
     * 获取到的凭证
     */
    @JsonProperty("access_token")
    private String accessToken;
    /**
     * 凭证有效时间,单位:秒
     */
    @JsonProperty("expires_in")
    private int expiresIn;
 
    public String getAccessToken() {
        return accessToken;
    }
 
    public void setAccessToken(String accessToken) {
        this.accessToken = accessToken;
    }
 
    public int getExpiresIn() {
        return expiresIn;
    }
 
    public void setExpiresIn(int expiresIn) {
        this.expiresIn = expiresIn;
    }
}