| | |
| | | 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; |
| | |
| | | private Integer orderType; |
| | | |
| | | private BigDecimal carriage; |
| | | /** |
| | | * ALTER TABLE `mall_order_info` |
| | | * ADD COLUMN `comment_state` int(11) NULL COMMENT '评价状态 1:待评价 2:已评价' AFTER `carriage`; |
| | | */ |
| | | |
| | | private Integer commentState; |
| | | /** |
| | | * 评价状态 1:待评价 2:已评价 |
| | | */ |
| | | 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; |
| | | |
| | | @TableField(exist = false) |
| | | private String orderIds; |
| | | } |