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;
|
|
}
|