package com.ruoyi.system.utils.wx.body.resp;
|
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
/**
|
* AccessToken 全局唯一
|
*
|
* @author xiaochen
|
*/
|
@Data
|
public class AccessTokenRespBody extends RespBody implements Serializable {
|
|
/**
|
* 获取到的凭证
|
*/
|
@JsonProperty("access_token")
|
private String accessToken;
|
/**
|
* 凭证有效时间,单位:秒
|
*/
|
@JsonProperty("expires_in")
|
private int expiresIn;
|
|
}
|