| | |
| | | /** |
| | | * 订单总价 |
| | | */ |
| | | private double total; |
| | | private Double total; |
| | | /** |
| | | * 折后价 |
| | | */ |
| | | private double zkTotal; |
| | | private Double zkTotal; |
| | | |
| | | /** |
| | | * 现金支付金额 |
| | | */ |
| | | private double cashPay; |
| | | private Double cashPay; |
| | | /** |
| | | * 现金支付金额 |
| | | */ |
| | | private double cardPay; |
| | | private Double cardPay; |
| | | /** |
| | | * 欠款金额 |
| | | */ |
| | | private double arrears; |
| | | private Double arrears; |
| | | |
| | | /** |
| | | * 店铺id |
| | |
| | | */ |
| | | 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; |
| | | } |
| | |
| | | this.searchShop = searchShop; |
| | | } |
| | | |
| | | public double getArrears() { |
| | | public Double getArrears() { |
| | | return arrears; |
| | | } |
| | | |
| | | public void setArrears(double arrears) { |
| | | public void setArrears(Double arrears) { |
| | | this.arrears = arrears; |
| | | } |
| | | |
| | | public double getCardPay() { |
| | | public Double getCardPay() { |
| | | return cardPay; |
| | | } |
| | | |
| | | public void setCardPay(double cardPay) { |
| | | public void setCardPay(Double cardPay) { |
| | | this.cardPay = cardPay; |
| | | } |
| | | |
| | |
| | | public void setEndTimeVo(Date endTimeVo) { |
| | | this.endTimeVo = endTimeVo; |
| | | } |
| | | public double getCashPay() { |
| | | public Double getCashPay() { |
| | | return cashPay; |
| | | } |
| | | |
| | | public void setCashPay(double cashPay) { |
| | | public void setCashPay(Double cashPay) { |
| | | this.cashPay = cashPay; |
| | | } |
| | | |
| | |
| | | this.activity = activity; |
| | | } |
| | | |
| | | public double getTotal() { |
| | | public Double getTotal() { |
| | | return total; |
| | | } |
| | | |
| | | public void setTotal(double total) { |
| | | public void setTotal(Double total) { |
| | | this.total = total; |
| | | } |
| | | |
| | |
| | | this.changeId = changeId; |
| | | } |
| | | |
| | | public double getZkTotal() { |
| | | public Double getZkTotal() { |
| | | return zkTotal; |
| | | } |
| | | |
| | | public void setZkTotal(double zkTotal) { |
| | | public void setZkTotal(Double zkTotal) { |
| | | this.zkTotal = zkTotal; |
| | | } |
| | | |