|  |  |  | 
|---|
|  |  |  | import cc.mrbird.febs.common.entity.BaseEntity; | 
|---|
|  |  |  | import com.baomidou.mybatisplus.annotation.TableField; | 
|---|
|  |  |  | import com.baomidou.mybatisplus.annotation.TableName; | 
|---|
|  |  |  | import io.swagger.annotations.ApiModelProperty; | 
|---|
|  |  |  | import lombok.Data; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import java.math.BigDecimal; | 
|---|
|  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | private String phone; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | private Long addressId; | 
|---|
|  |  |  | private String address; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | private String longitude; | 
|---|
|  |  |  | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | public static final Integer COMMENT_STATE_NO = 1; | 
|---|
|  |  |  | public static final Integer COMMENT_STATE_YES = 2; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | //提货团长特征码 | 
|---|
|  |  |  | private String takeUniqueCode; | 
|---|
|  |  |  | //提货码 | 
|---|
|  |  |  | private String takeCode; | 
|---|
|  |  |  | //配送方式 1:自提 2:快递 | 
|---|
|  |  |  | private Integer deliveryType; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 自提点信息 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @TableField(exist = false) | 
|---|
|  |  |  | private String leaderName; | 
|---|
|  |  |  | @TableField(exist = false) | 
|---|
|  |  |  | private String leaderPhone; | 
|---|
|  |  |  | @TableField(exist = false) | 
|---|
|  |  |  | private String addressPic; | 
|---|
|  |  |  | @TableField(exist = false) | 
|---|
|  |  |  | private String province; | 
|---|
|  |  |  | @TableField(exist = false) | 
|---|
|  |  |  | private String city; | 
|---|
|  |  |  | @TableField(exist = false) | 
|---|
|  |  |  | private String township; | 
|---|
|  |  |  | @TableField(exist = false) | 
|---|
|  |  |  | private String addressArea; | 
|---|
|  |  |  | @TableField(exist = false) | 
|---|
|  |  |  | private String detailAddress; | 
|---|
|  |  |  | @TableField(exist = false) | 
|---|
|  |  |  | private Double leaderLongitude; | 
|---|
|  |  |  | @TableField(exist = false) | 
|---|
|  |  |  | private Double leaderLatitude; | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 微信订单编号 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | private String wxOrderNo; | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 配送状态 1:待配送 2:配送中 3:已送达 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | private Integer deliveryState; | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 是否送货上门  1:是 2:否 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | private Integer isHome; | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 是否开过发票 0:未开 1:已开 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | private Integer isInvoice; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @TableField(exist = false) | 
|---|
|  |  |  | private String orderIds; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @TableField(exist = false) | 
|---|
|  |  |  | private String expressNo; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | private Integer isFree; | 
|---|
|  |  |  | } | 
|---|