xiaoyong931011
2022-09-20 09995b9e9eec7851a2cab5391c3beb4e86c26012
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
42
43
44
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;
}