From f60c1f9586393ba49065f90f80aca34441d2a6f7 Mon Sep 17 00:00:00 2001 From: luxiaotao1123 <xltys1995> Date: 星期五, 02 四月 2021 00:31:52 +0800 Subject: [PATCH] # --- src/main/java/zy/cloud/wms/manager/entity/CustOrder.java | 16 +++++++++++++++- 1 files changed, 15 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 18c3f19..6777442 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 Double vchcode; + + /** * 鍟嗗搧缂栧彿 */ @ApiModelProperty(value= "鍟嗗搧缂栧彿") @@ -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,Double vchcode,String userCode,Double qty,Double total,Double price, Double 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; @@ -283,5 +291,11 @@ this.memo = memo; } + public Double getVchcode() { + return vchcode; + } + public void setVchcode(Double vchcode) { + this.vchcode = vchcode; + } } -- Gitblit v1.9.1