leutu
2024-06-03 3ef35e6cd16bbfa206b26bb3271eac40ad020bcb
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
package com.fastbee.common.wechat;
 
import com.alibaba.fastjson2.annotation.JSONField;
import lombok.Data;
 
/**
 * @author fastb
 * @date 2023-08-16 17:48
 */
@Data
public class WeChatPhoneInfo {
 
    @JSONField(name = "errcode")
    private String errCode;
 
    @JSONField(name = "errmsg")
    private String errmsg;
 
    @JSONField(name = "phone_info")
    private PhoneInfo phoneInfo;
 
    @Data
    public class PhoneInfo {
 
        private String phoneNumber;
 
        private String purePhoneNumber;
 
        private String countryCode;
 
        private WaterMark watermark;
    }
 
    @Data
    class WaterMark {
 
        private String timestamp;
 
        private String appid;
    }
}