eight
2024-08-13 7660fe12273a6b132256a2fa83ca1b11d6b2381f
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
package cn.lihu.jh.module.system.api.social.dto;
 
import lombok.Data;
 
/**
 * 微信小程序的手机信息 Response DTO
 *
 * @author 芋道源码
 */
@Data
public class SocialWxPhoneNumberInfoRespDTO {
 
    /**
     * 用户绑定的手机号(国外手机号会有区号)
     */
    private String phoneNumber;
 
    /**
     * 没有区号的手机号
     */
    private String purePhoneNumber;
    /**
     * 区号
     */
    private String countryCode;
 
}