From 918cf69e763d30a1315fa1c83a964dae4dd88f12 Mon Sep 17 00:00:00 2001
From: luxiaotao1123 <xltys1995>
Date: 星期六, 03 四月 2021 15:11:08 +0800
Subject: [PATCH] #

---
 src/main/java/zy/cloud/wms/manager/entity/CustOrder.java |   22 ++++++++++++++++++----
 1 files changed, 18 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 18c3f19..c805435 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= "鍟嗗搧缂栧彿")
@@ -71,7 +78,7 @@
      */
     @ApiModelProperty(value= "鍟嗗搧鍗曚环")
     @TableField("row_no")
-    private Double rowNo;
+    private Integer rowNo;
 
     /**
      * 鍟嗗搧澶囨敞
@@ -107,11 +114,12 @@
 
     public CustOrder() {}
 
-    public CustOrder(String number,String billDate,String bTypeId,String eTypeId,String userCode,Double qty,Double total,Double price, Double rowNo, 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;
@@ -203,11 +211,11 @@
         this.price = price;
     }
 
-    public Double getRowNo() {
+    public Integer getRowNo() {
         return rowNo;
     }
 
-    public void setRowNo(Double rowNo) {
+    public void setRowNo(Integer rowNo) {
         this.rowNo = rowNo;
     }
 
@@ -283,5 +291,11 @@
         this.memo = memo;
     }
 
+    public Integer getVchcode() {
+        return vchcode;
+    }
 
+    public void setVchcode(Integer vchcode) {
+        this.vchcode = vchcode;
+    }
 }

--
Gitblit v1.9.1