AlipayUserInfoRespVO.java
638 Bytes
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
package com.yohoufo.user.responseVO;
import lombok.Data;
/**
* Created by meiling.ge on 2018/11/21.
*/
@Data
public class AlipayUserInfoRespVO extends AlipayCommonRespVO{
private String user_id;
private String avatar;
private String province;
private String city;
private String nick_name;
private String is_student_certified;
private String user_type;
private String user_status;
private String is_certified;
private String gender;
//
private String access_token;
private String expires_in;
private String refresh_token;
private String re_expires_in;
}