From bcd583668d6dc95993075354a8e7b0935e92eefd Mon Sep 17 00:00:00 2001
From: luxiaotao1123 <t1341870251@163.com>
Date: 星期一, 22 三月 2021 11:07:26 +0800
Subject: [PATCH] #
---
src/main/java/zy/cloud/wms/manager/entity/CustOrder.java | 17 ++++++++++++++++-
1 files changed, 16 insertions(+), 1 deletions(-)
diff --git a/src/main/java/zy/cloud/wms/manager/entity/CustOrder.java b/src/main/java/zy/cloud/wms/manager/entity/CustOrder.java
index 2de633b..eeb2b63 100644
--- a/src/main/java/zy/cloud/wms/manager/entity/CustOrder.java
+++ b/src/main/java/zy/cloud/wms/manager/entity/CustOrder.java
@@ -55,6 +55,12 @@
private Double qty;
/**
+ * 鎬绘暟閲�
+ */
+ @ApiModelProperty(value= "鎬绘暟閲�")
+ private Double total;
+
+ /**
* 鍟嗗搧鍗曚环
*/
@ApiModelProperty(value= "鍟嗗搧鍗曚环")
@@ -94,13 +100,14 @@
public CustOrder() {}
- public CustOrder(String number,String billDate,String bTypeId,String eTypeId,String userCode,Double qty,Double price,String comment,Integer status,Date createTime,Date updateTime,String memo) {
+ public CustOrder(String number,String billDate,String bTypeId,String eTypeId,String userCode,Double qty,Double total,Double price,String comment,Integer status,Date createTime,Date updateTime,String memo) {
this.number = number;
this.billDate = billDate;
this.bTypeId = bTypeId;
this.eTypeId = eTypeId;
this.userCode = userCode;
this.qty = qty;
+ this.total = total;
this.price = price;
this.comment = comment;
this.status = status;
@@ -172,6 +179,14 @@
this.qty = qty;
}
+ public Double getTotal() {
+ return total;
+ }
+
+ public void setTotal(Double total) {
+ this.total = total;
+ }
+
public Double getPrice() {
return price;
}
--
Gitblit v1.9.1