You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
616 B
26 lines
616 B
package com.ynxbd.wx.wxfactory.base.auth.models;
|
|
|
|
import com.ynxbd.wx.wxfactory.bean.WxBaseResult;
|
|
import lombok.Getter;
|
|
import lombok.NoArgsConstructor;
|
|
import lombok.Setter;
|
|
import lombok.ToString;
|
|
|
|
@Getter
|
|
@Setter
|
|
@ToString(callSuper = true)
|
|
@NoArgsConstructor
|
|
public class RespAccessToken extends WxBaseResult {
|
|
|
|
// 授权token
|
|
private String accessToken;
|
|
// 有效时间(s)
|
|
private Integer expiresIn;
|
|
// 创建时间
|
|
private String createTime;
|
|
|
|
private String refreshToken;
|
|
private String openid;
|
|
private String scope;
|
|
private String unionid;
|
|
}
|
|
|