WxOpenAuthorizationResult.java
1.6 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
package org.theyeasy.weixin.model;
import java.io.Serializable;
import java.util.List;
import com.google.gson.annotations.SerializedName;
/**
* 微信公众号授权信息
* @author heshaojun
*
*/
public class WxOpenAuthorizationResult implements Serializable {
/**
*
*/
private static final long serialVersionUID = 3349609697458922634L;
@SerializedName("authorizer_appid")
private String authorizerAppid;
@SerializedName("authorizer_access_token")
private String authorizerAccessToken;
@SerializedName("expires_in")
private int expiresIn;
@SerializedName("authorizer_refresh_token")
private String authorizerRefreshToken;
@SerializedName("func_info")
private List<WxOpenAuthorizationFuncResult> funcInfo;
public String getAuthorizerAppid() {
return authorizerAppid;
}
public void setAuthorizerAppid(String authorizerAppid) {
this.authorizerAppid = authorizerAppid;
}
public String getAuthorizerAccessToken() {
return authorizerAccessToken;
}
public void setAuthorizerAccessToken(String authorizerAccessToken) {
this.authorizerAccessToken = authorizerAccessToken;
}
public int getExpiresIn() {
return expiresIn;
}
public void setExpiresIn(int expiresIn) {
this.expiresIn = expiresIn;
}
public String getAuthorizerRefreshToken() {
return authorizerRefreshToken;
}
public void setAuthorizerRefreshToken(String authorizerRefreshToken) {
this.authorizerRefreshToken = authorizerRefreshToken;
}
public List<WxOpenAuthorizationFuncResult> getFuncInfo() {
return funcInfo;
}
public void setFuncInfo(List<WxOpenAuthorizationFuncResult> funcInfo) {
this.funcInfo = funcInfo;
}
}