xiaoyong931011
2023-02-13 bab85c9c497af4577bcd53a43345621ac8fdbfdb
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
49
50
51
52
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;
    //省
    private String province;
    //市
    private String city;
 
}