From b4da2725da57633daff22eed89f09d6e33f18560 Mon Sep 17 00:00:00 2001 From: 935090232@qq.com <ak473600000> Date: Fri, 05 Mar 2021 08:47:12 +0800 Subject: [PATCH] 修改数据库 --- zq-erp/src/main/java/com/matrix/system/hive/bean/SysOrderItem.java | 52 ++++++++++++++++++++++++++++++++++++++++++++++------ 1 files changed, 46 insertions(+), 6 deletions(-) diff --git a/zq-erp/src/main/java/com/matrix/system/hive/bean/SysOrderItem.java b/zq-erp/src/main/java/com/matrix/system/hive/bean/SysOrderItem.java index 366c0d8..7456a8e 100644 --- a/zq-erp/src/main/java/com/matrix/system/hive/bean/SysOrderItem.java +++ b/zq-erp/src/main/java/com/matrix/system/hive/bean/SysOrderItem.java @@ -91,7 +91,8 @@ - //页面参数使用 + + /** * 付款方式 */ @@ -124,6 +125,45 @@ private ShoppingGoods shoppingGoods; + /** + * 原有数量 + */ + private int preCount; + + /** + * 是否退库存 + */ + private String isReturnStore; + + /** + * 退款时,原itemid + */ + private Long oldItemId; + + public Long getOldItemId() { + return oldItemId; + } + + public void setOldItemId(Long oldItemId) { + this.oldItemId = oldItemId; + } + + public String getIsReturnStore() { + return isReturnStore; + } + + public void setIsReturnStore(String isReturnStore) { + this.isReturnStore = isReturnStore; + } + + public int getPreCount() { + return preCount; + } + + public void setPreCount(int preCount) { + this.preCount = preCount; + } + public ShoppingGoods getShoppingGoods() { return shoppingGoods; } @@ -143,15 +183,15 @@ /** * 业绩计算 */ - private List<AchieveNew> achaeveList; + private List<AchieveNew> achieveList; - public List<AchieveNew> getAchaeveList() { - return achaeveList; + public List<AchieveNew> getAchieveList() { + return achieveList; } - public void setAchaeveList(List<AchieveNew> achaeveList) { - this.achaeveList = achaeveList; + public void setAchieveList(List<AchieveNew> achieveList) { + this.achieveList = achieveList; } public String getPayMethodDetail() { -- Gitblit v1.9.1