| | |
| | | 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 javax.validation.constraints.NotNull; |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | |
| | | //支付订单号 |
| | | private String payOrderNo; |
| | | //支付结果 1-成功2-失败 |
| | | private String payResult; |
| | | private Integer payResult; |
| | | |
| | | /** |
| | | * 状态;1-待支付2-已支付3-已取消 |
| | |
| | | */ |
| | | private Integer orderType; |
| | | |
| | | private Long addressId; |
| | | |
| | | private Integer deliverType; |
| | | //发货状态:1:待发货2:已发货3:已签收 |
| | | private Integer deliverState; |
| | | public static final Integer DELIVER_STATUS_WAIT = 1; |
| | | public static final Integer DELIVER_STATUS_DONE = 2; |
| | | public static final Integer DELIVER_STATUS_OVER = 3; |
| | | private String deliverName; |
| | | private String deliverCode; |
| | | |
| | | @TableField(exist = false) |
| | | private String address; |
| | | |
| | |
| | | @TableField(exist = false) |
| | | private String goodsName; |
| | | |
| | | @TableField(exist = false) |
| | | private String orderIds; |
| | | |
| | | } |