package com.doumee.dao.web.dto; import com.doumee.core.annotation.excel.ExcelColumn; import com.fasterxml.jackson.annotation.JsonFormat; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import java.math.BigDecimal; import java.util.Date; /** * @author Eva.Caesar Liu * @date 2023/02/14 11:14 */ @Data @ApiModel("用户收获地址") public class AddrDTO { @ApiModelProperty(value = "主键") private Integer id; @ApiModelProperty(value = "用户编码(关联member表)") private Integer memberId; @ApiModelProperty(value = "是否默认 0否 1是") private Integer isDefault; @ApiModelProperty(value = "收货人姓名") private String name; @ApiModelProperty(value = "手机号") private String phone; @ApiModelProperty(value = "详细地址") private String addr; @ApiModelProperty(value = "所属区域编码") private Integer areaId; @ApiModelProperty(value = "所属区域地址") private String areaDetail; @ApiModelProperty(value = "经度") @ExcelColumn(name="经度") private BigDecimal longitude; @ApiModelProperty(value = "维度") @ExcelColumn(name="维度") private BigDecimal latitude; }