| | |
| | | private Date updateAt; |
| | | |
| | | /** |
| | | * 商家id |
| | | */ |
| | | private Long storeId; |
| | | /** |
| | | * 配送方式(1.自提 2.快递) |
| | | */ |
| | | private Integer deliveryType; |
| | | /** |
| | | * 原始订单id |
| | | */ |
| | | private String orderId; |
| | | /** |
| | | * 退款订单号 |
| | | */ |
| | | private String refundOrderNo; |
| | | /** |
| | | * 退款状态(1.处理中 2.退款成功 3.退款失败 4.已取消 5.退款中) |
| | | */ |
| | | private String refundStatus; |
| | | /** |
| | | * 类型(1.支付 2.退款 3.取消) |
| | | */ |
| | | private String payType; |
| | | |
| | | /** |
| | | * 支付状态(1.未支付 2.已支付) |
| | | */ |
| | | public interface payStatus { |
| | | int no = 1; |
| | | int yes = 2; |
| | | } |
| | | |
| | | /** |
| | | * 退款状态(1.处理中 2.退款成功 3.退款失败 4.已取消 5.退款中) |
| | | */ |
| | | public interface refundStatus { |
| | | int clz = 1; |
| | | int tkcg = 2; |
| | | int tksb = 3; |
| | | int yqx = 4; |
| | | int tkz = 5; |
| | | } |
| | | |
| | | /** |
| | | * 类型(1.支付 2.退款 3.取消) |
| | | */ |
| | | public interface payType { |
| | | int zf = 1; |
| | | int tk = 2; |
| | | int qx = 3; |
| | | } |
| | | |
| | | } |