| | |
| | | package cc.mrbird.febs.mall.entity; |
| | | |
| | | 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; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author wzy |
| | |
| | | |
| | | private String remark; |
| | | |
| | | /** |
| | | * 是否删除 1-是 2-否 |
| | | */ |
| | | private Integer delFlag; |
| | | |
| | | /** |
| | | * 确认收货时间 |
| | | */ |
| | | private Date receivingTime; |
| | | |
| | | @TableField(exist = false) |
| | | private List<MallOrderItem> items; |
| | | |
| | | private String payImage; |
| | | |
| | | private String payTradeNo; |
| | | |
| | | /** |
| | | * 订单类型 1-普通订单 2-积分订单 |
| | | */ |
| | | private Integer orderType; |
| | | |
| | | private BigDecimal carriage; |
| | | |
| | | private Integer commentState; |
| | | /** |
| | | * 评价状态 1:待评价 2:已评价 |
| | | */ |
| | | public static final Integer COMMENT_STATE_NO = 1; |
| | | public static final Integer COMMENT_STATE_YES = 2; |
| | | |
| | | //配送方式 1:快递寄送2:到店自提 |
| | | private Integer deliverType; |
| | | |
| | | private Long shopId; |
| | | //折扣后金额 |
| | | private BigDecimal scoreAmount; |
| | | //折扣积分数量 |
| | | private BigDecimal scoreCnt; |
| | | } |