| | |
| | | package com.matrix.system.hive.bean; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.matrix.core.tools.DateUtil; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | |
| | | */ |
| | | public class SysOrder implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | /** |
| | | * 订单类型-销售订单 |
| | | */ |
| | | public static final int ORDER_TYPE_SEAL= 1; |
| | | |
| | | /** |
| | | * 订单类型-退款订单 |
| | | */ |
| | | public static final int ORDER_TYPE_REFUND= 2; |
| | | |
| | | /** |
| | | * 序号 |
| | |
| | | * 会员姓名 |
| | | */ |
| | | private String vipNo; |
| | | |
| | | |
| | | /** |
| | | * 订单类型1,销售订单,2退款订单 |
| | | */ |
| | | private Integer orderType; |
| | | |
| | | /* 会员手机号 |
| | | */ |
| | | private String vipPhone; |
| | |
| | | */ |
| | | private Integer times; |
| | | |
| | | |
| | | private String type; |
| | | |
| | | /** |
| | | * 原有订单ID 退款时使用 |
| | | */ |
| | | private Long oldOrderId; |
| | | |
| | | public Long getOldOrderId() { |
| | | return oldOrderId; |
| | | } |
| | | |
| | | public void setOldOrderId(Long oldOrderId) { |
| | | this.oldOrderId = oldOrderId; |
| | | } |
| | | |
| | | public List<SysOrderFlow> getFlows() { |
| | | return flows; |
| | |
| | | this.shopShortName = shopShortName; |
| | | } |
| | | |
| | | public Integer getOrderType() { |
| | | return orderType; |
| | | } |
| | | |
| | | public void setOrderType(Integer orderType) { |
| | | this.orderType = orderType; |
| | | } |
| | | |
| | | public String getType() { |
| | | return type; |
| | | } |