| | |
| | | package com.yeshi.fanli.entity.bus.user;
|
| | |
|
| | | public class WeiXinUserParam {
|
| | | |
| | |
|
| | | private String accessToken;
|
| | | private String refreshToken;
|
| | | private String openId;
|
| | | private String unionId;
|
| | | private String scope;
|
| | | private Integer expires;
|
| | | |
| | |
|
| | | public String getAccessToken() {
|
| | | return accessToken;
|
| | | }
|
| | |
|
| | | public void setAccessToken(String accessToken) {
|
| | | this.accessToken = accessToken;
|
| | | }
|
| | |
|
| | | public String getRefreshToken() {
|
| | | return refreshToken;
|
| | | }
|
| | |
|
| | | public void setRefreshToken(String refreshToken) {
|
| | | this.refreshToken = refreshToken;
|
| | | }
|
| | |
|
| | | public String getOpenId() {
|
| | | return openId;
|
| | | }
|
| | |
|
| | | public void setOpenId(String openId) {
|
| | | this.openId = openId;
|
| | | }
|
| | |
|
| | | public String getScope() {
|
| | | return scope;
|
| | | }
|
| | |
|
| | | public void setScope(String scope) {
|
| | | this.scope = scope;
|
| | | }
|
| | |
|
| | | public Integer getExpires() {
|
| | | return expires;
|
| | | }
|
| | |
|
| | | public void setExpires(Integer expires) {
|
| | | this.expires = expires;
|
| | | }
|
| | | |
| | |
|
| | | public String getUnionId() {
|
| | | return unionId;
|
| | | }
|
| | |
|
| | | public void setUnionId(String unionId) {
|
| | | this.unionId = unionId;
|
| | | }
|
| | |
|
| | | }
|