| package com.xzx.gc.user.dto;  | 
|   | 
| import io.swagger.annotations.ApiModelProperty;  | 
| import lombok.Data;  | 
|   | 
| import javax.validation.constraints.NotBlank;  | 
|   | 
| @Data  | 
| public class AddressDto {  | 
|   | 
|     @ApiModelProperty("经度")  | 
|     @NotBlank(message = "经度不能为空")  | 
|     private String longitude;  | 
|     @ApiModelProperty("纬度")  | 
|     @NotBlank(message = "纬度不能为空")  | 
|     private String latitude;  | 
|   | 
|     @ApiModelProperty("用户手机号")  | 
|     @NotBlank(message = "用户手机号不能为空")  | 
|     private String mobilePhone;  | 
|   | 
|     @ApiModelProperty(hidden = true)  | 
|     private String userId;  | 
|   | 
|     @ApiModelProperty(value = "当前时间戳",hidden = true)  | 
|     private Long time;  | 
| }  | 
|   |