xiaoyong931011
2022-09-23 19ab08f041d6773f22594ed393105c623e09f543
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
45
46
47
48
package cc.mrbird.febs.mall.entity;
 
import cc.mrbird.febs.common.entity.BaseEntity;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
/**
 * @author wzy
 * @date 2021-09-18
 **/
@Data
@TableName("mall_address_info")
public class MallAddressInfo extends BaseEntity {
 
    private String name;
 
    private String phone;
 
    private Long memberId;
 
    /**
     * 地区 省市区
     */
    private String area;
 
    /**
     * 具体地址
     */
    private String address;
 
    /**
     * 经度
     */
    private String longitude;
 
    /**
     * 纬度
     */
    private String latitude;
 
    /**
     * 是否默认地址 1-是 2-否
     */
    private Integer isDefault;
    public static final Integer IS_DEFAULT_Y = 1;
    public static final Integer IS_DEFAULT_N = 2;
 
}