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
| package com.ruoyi.system.utils.wx.pojo;
|
| import lombok.Data;
|
| /**
| * @author xiaochen
| * @ClassName AppletUserDecodeData
| * @Description
| * 用户主体信息部分
| * {
| * "openId": "OPENID",
| * "nickName": "NICKNAME",
| * "gender": GENDER,
| * "city": "CITY",
| * "province": "PROVINCE",
| * "country": "COUNTRY",
| * "avatarUrl": "AVATARURL",
| * "unionId": "UNIONID",
| * "watermark":
| * {
| * "appid":"APPID",
| * "timestamp":TIMESTAMP
| * }
| * }
| * 电话部分
| * {
| * "phoneNumber": "13580006666",
| * "purePhoneNumber": "13580006666",
| * "countryCode": "86",
| * "watermark":
| * {
| * "appid":"APPID",
| * "timestamp": TIMESTAMP
| * }
| * }
| *
| */
| @Data
| public class AppletUserDecodeData {
| private String openId;
| private String unionId;
| private String nickName;
| private int gender;
| private String city;
| private String province;
| private String country;
| private String avatarUrl;
| private Watermark watermark;
| private String phoneNumber;
| private String purePhoneNumber;
| private String countryCode;
| }
|
|