From 7a868ca70a8f8cc796664ce1e08e8f4cae322fc8 Mon Sep 17 00:00:00 2001
From: luxiaotao1123 <xltys1995>
Date: 星期六, 10 四月 2021 00:09:09 +0800
Subject: [PATCH] #
---
src/main/java/zy/cloud/wms/manager/entity/CustOrder.java | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++----
1 files changed, 51 insertions(+), 4 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 27b6c23..2d06e94 100644
--- a/src/main/java/zy/cloud/wms/manager/entity/CustOrder.java
+++ b/src/main/java/zy/cloud/wms/manager/entity/CustOrder.java
@@ -42,6 +42,13 @@
private String eTypeId;
/**
+ * 鍗曟嵁鑷ID
+ */
+ @ApiModelProperty(value= "鍗曟嵁鑷ID")
+ @TableField("vch_code")
+ private Integer vchcode;
+
+ /**
* 鍟嗗搧缂栧彿
*/
@ApiModelProperty(value= "鍟嗗搧缂栧彿")
@@ -55,10 +62,23 @@
private Double qty;
/**
+ * 鎬绘暟閲�
+ */
+ @ApiModelProperty(value= "鎬绘暟閲�")
+ private Double total;
+
+ /**
* 鍟嗗搧鍗曚环
*/
@ApiModelProperty(value= "鍟嗗搧鍗曚环")
private Double price;
+
+ /**
+ * 鍟嗗搧鍗曚环
+ */
+ @ApiModelProperty(value= "鍟嗗搧鍗曚环")
+ @TableField("row_no")
+ private Integer rowNo;
/**
* 鍟嗗搧澶囨敞
@@ -69,7 +89,7 @@
/**
* 鐘舵�� 1: 寰呭鐞� 2: 宸插畬鎴� 3: 鍙栨秷 4: 寮傚父
*/
- @ApiModelProperty(value= "鐘舵�� 0: 杞藉叆涓� 1: 寰呭鐞� 2: 宸插畬鎴� 3: 鍙栨秷 4: 寮傚父 ")
+ @ApiModelProperty(value= "鐘舵�� 0: 杞藉叆涓� 1: 寰呭鐞� 2: 鏈嫞璐� 3: 鍙栨秷 4: 宸插畬鎴� 5: 鍑嗗鍙栨秷 ")
private Integer status;
/**
@@ -94,14 +114,17 @@
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,Integer vchcode,String userCode,Double qty,Double total,Double price, Integer rowNo, String comment,Integer status,Date createTime,Date updateTime,String memo) {
this.number = number;
this.billDate = billDate;
this.bTypeId = bTypeId;
this.eTypeId = eTypeId;
+ this.vchcode = vchcode;
this.userCode = userCode;
this.qty = qty;
+ this.total = total;
this.price = price;
+ this.rowNo = rowNo;
this.comment = comment;
this.status = status;
this.createTime = createTime;
@@ -172,12 +195,28 @@
this.qty = qty;
}
+ public Double getTotal() {
+ return total;
+ }
+
+ public void setTotal(Double total) {
+ this.total = total;
+ }
+
public Double getPrice() {
return price;
}
public void setPrice(Double price) {
this.price = price;
+ }
+
+ public Integer getRowNo() {
+ return rowNo;
+ }
+
+ public void setRowNo(Integer rowNo) {
+ this.rowNo = rowNo;
}
public String getComment() {
@@ -200,11 +239,13 @@
case 1:
return "寰呭鐞�";
case 2:
- return "宸插畬鎴�";
+ return "鏈嫞璐�";
case 3:
return "鍙栨秷";
case 4:
- return "寮傚父";
+ return "宸插畬鎴�";
+ case 5:
+ return "鍑嗗鍙栨秷";
default:
return String.valueOf(this.status);
}
@@ -252,5 +293,11 @@
this.memo = memo;
}
+ public Integer getVchcode() {
+ return vchcode;
+ }
+ public void setVchcode(Integer vchcode) {
+ this.vchcode = vchcode;
+ }
}
--
Gitblit v1.9.1