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.
17 lines
620 B
17 lines
620 B
package com.ruoyi.hl.forest.ptoto; |
|
|
|
import lombok.AllArgsConstructor; |
|
import lombok.Data; |
|
|
|
@Data |
|
@AllArgsConstructor |
|
public class WxPublicCode2UserInfoRes extends WxRes{ |
|
private String openid;//用户唯一标识 |
|
private String refreshToken;//用户刷新access_token |
|
private String accessToken;//网页授权接口调用凭证,注意:此access_token与基础支持的access_token不同 |
|
private String scope;//用户授权的作用域,使用逗号(,)分隔 |
|
private Long expiresIn;//access_token接口调用凭证超时时间,单位(秒) |
|
|
|
public WxPublicCode2UserInfoRes() { |
|
} |
|
}
|
|
|