From 1a20adbee4043a7b4a9e51565e7ac0f99d06c36d Mon Sep 17 00:00:00 2001 From: wzy <wzy19931122ai@163.com> Date: Sat, 24 Apr 2021 20:21:24 +0800 Subject: [PATCH] Merge branch 'data_move' of http://120.27.238.55:7000/r/beauty-erp into data_move --- zq-erp/src/main/java/com/matrix/system/hive/bean/SysOrder.java | 93 +++++++++++++++++++++++++++++++++++++++------- 1 files changed, 78 insertions(+), 15 deletions(-) diff --git a/zq-erp/src/main/java/com/matrix/system/hive/bean/SysOrder.java b/zq-erp/src/main/java/com/matrix/system/hive/bean/SysOrder.java index 191f430..a00389c 100644 --- a/zq-erp/src/main/java/com/matrix/system/hive/bean/SysOrder.java +++ b/zq-erp/src/main/java/com/matrix/system/hive/bean/SysOrder.java @@ -85,24 +85,24 @@ /** * 订单总价 */ - 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 @@ -113,6 +113,36 @@ * 订单状态 */ private String statu; + + private Date createTime; + + private Date updateTime; + + private String createBy; + + public Date getCreateTime() { + return createTime; + } + + public void setCreateTime(Date createTime) { + this.createTime = createTime; + } + + public Date getUpdateTime() { + return updateTime; + } + + public void setUpdateTime(Date updateTime) { + this.updateTime = updateTime; + } + + public String getCreateBy() { + return createBy; + } + + public void setCreateBy(String createBy) { + this.createBy = createBy; + } /** * 扩展属性 @@ -184,6 +214,39 @@ * 原有订单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; + + private List<AchieveNew> achieveNews; + + public List<AchieveNew> getAchieveNews() { + return achieveNews; + } + + public void setAchieveNews(List<AchieveNew> achieveNews) { + this.achieveNews = achieveNews; + } + + public Integer getIsHasRefund() { + return isHasRefund; + } + + public void setIsHasRefund(Integer isHasRefund) { + this.isHasRefund = isHasRefund; + } public Long getOldOrderId() { return oldOrderId; @@ -265,19 +328,19 @@ 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; } @@ -304,11 +367,11 @@ 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; } @@ -414,11 +477,11 @@ this.activity = activity; } - public double getTotal() { + public Double getTotal() { return total; } - public void setTotal(double total) { + public void setTotal(Double total) { this.total = total; } @@ -443,11 +506,11 @@ this.changeId = changeId; } - public double getZkTotal() { + public Double getZkTotal() { return zkTotal; } - public void setZkTotal(double zkTotal) { + public void setZkTotal(Double zkTotal) { this.zkTotal = zkTotal; } -- Gitblit v1.9.1