| package cc.mrbird.febs.mall.vo; | 
|   | 
| import io.swagger.annotations.ApiModel; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| /** | 
|  * @author wzy | 
|  * @date 2021-09-18 | 
|  **/ | 
| @Data | 
| @ApiModel(value = "AddressInfoVo", description = "地址信息返回参数类") | 
| public class AddressInfoVo { | 
|   | 
|     @ApiModelProperty(value = "id") | 
|     private String id; | 
|   | 
|     @ApiModelProperty(value = "姓名") | 
|     private String name; | 
|   | 
|     @ApiModelProperty(value = "手机号") | 
|     private String phone; | 
|   | 
|     @ApiModelProperty(value = "地区") | 
|     private String area; | 
|   | 
|     @ApiModelProperty(value = "地址") | 
|     private String address; | 
|   | 
|     @ApiModelProperty(value = "是否默认地址 1-是 2-否") | 
|     private Integer isDefault; | 
|   | 
|     /** | 
|      * 经度 | 
|      */ | 
|     @ApiModelProperty(value = "经度") | 
|     private String longitude; | 
|   | 
|     /** | 
|      * 纬度 | 
|      */ | 
|     @ApiModelProperty(value = "纬度") | 
|     private String latitude; | 
|     //省 | 
|   | 
|     @ApiModelProperty(value = "省") | 
|     private String province; | 
|     //市 | 
|   | 
|     @ApiModelProperty(value = "市") | 
|     private String city; | 
| } |