潘志宝
5 天以前 6d75723f3e3bd43895db2470bc5fabb2314dbe8b
提交 | 用户 | 时间
e7c126 1 package com.iailab.module.system.api.social.dto;
H 2
3 import io.swagger.v3.oas.annotations.media.Schema;
4 import lombok.Data;
5
6 @Schema(description = "RPC 服务 - 微信小程序的手机信息 Response DTO")
7 @Data
8 public class SocialWxPhoneNumberInfoRespDTO {
9
10     @Schema(description = "用户绑定的手机号(国外手机号会有区号)", requiredMode = Schema.RequiredMode.REQUIRED, example = "021-13579246810")
11     private String phoneNumber;
12
13     @Schema(description = "没有区号的手机号", requiredMode = Schema.RequiredMode.REQUIRED, example = "13579246810")
14     private String purePhoneNumber;
15     @Schema(description = "区号", requiredMode = Schema.RequiredMode.REQUIRED, example = "021")
16     private String countryCode;
17
18 }