| | |
| | | private Date orderTime; |
| | | |
| | | /** |
| | | * 收款 |
| | | * calculationType: 1, |
| | | */ |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm") |
| | | private Date payTime; |
| | |
| | | */ |
| | | private Long oldOrderId; |
| | | |
| | | /** |
| | | * 该订单有退款 |
| | | */ |
| | | public static final Integer IS_HAS_REFUND_Y = 1; |
| | | |
| | | /** |
| | | * 该订单无退款 |
| | | */ |
| | | public static final Integer IS_HAS_REFUND_N = 2; |
| | | |
| | | /** |
| | | * 是否发生退款 1-是 2-否 |
| | | */ |
| | | private Integer isHasRefund; |
| | | |
| | | public Integer getIsHasRefund() { |
| | | return isHasRefund; |
| | | } |
| | | |
| | | public void setIsHasRefund(Integer isHasRefund) { |
| | | this.isHasRefund = isHasRefund; |
| | | } |
| | | |
| | | public Long getOldOrderId() { |
| | | return oldOrderId; |
| | | } |