fix
Helius
2022-09-22 5a8bb0c1dde052c6c95d545f53ae27d42338529d
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;
}