From 39eda46cbbf3ebb393c3770a5a19e923cace2a13 Mon Sep 17 00:00:00 2001 From: luxiaotao1123 <t1341870251@163.com> Date: 星期四, 22 四月 2021 14:05:54 +0800 Subject: [PATCH] # --- src/main/java/zy/cloud/wms/manager/entity/Check.java | 24 +++++++++++++++++++++--- 1 files changed, 21 insertions(+), 3 deletions(-) diff --git a/src/main/java/zy/cloud/wms/manager/entity/Check.java b/src/main/java/zy/cloud/wms/manager/entity/Check.java index 621c603..1692c47 100644 --- a/src/main/java/zy/cloud/wms/manager/entity/Check.java +++ b/src/main/java/zy/cloud/wms/manager/entity/Check.java @@ -101,6 +101,13 @@ private Double cekQty; /** + * 宸�� + */ + @ApiModelProperty(value= "宸��") + @TableField("diff_qty") + private Double diffQty; + + /** * 鐩堜簭 1: 鐩樼泩 2: 鐩樹簭 */ @ApiModelProperty(value= "鐩堜簭 1: 鐩樼泩 2: 鐩樹簭 ") @@ -148,7 +155,7 @@ public Check() {} - public Check(String uuid,Long nodeId,String nodeUuid,String locNo,String matnr,String maktx,String unit,Long docId,String docNum,Double oriQty,Double cekQty,Integer settle,Integer status,Long createBy,Date createTime,Long updateBy,Date updateTime,String memo) { + public Check(String uuid,Long nodeId,String nodeUuid,String locNo,String matnr,String maktx,String unit,Long docId,String docNum,Double oriQty,Double cekQty,Double diffQty,Integer settle,Integer status,Long createBy,Date createTime,Long updateBy,Date updateTime,String memo) { this.uuid = uuid; this.nodeId = nodeId; this.nodeUuid = nodeUuid; @@ -160,6 +167,7 @@ this.docNum = docNum; this.oriQty = oriQty; this.cekQty = cekQty; + this.diffQty = diffQty; this.settle = settle; this.status = status; this.createBy = createBy; @@ -295,6 +303,14 @@ this.cekQty = cekQty; } + public Double getDiffQty() { + return diffQty; + } + + public void setDiffQty(Double diffQty) { + this.diffQty = diffQty; + } + public Integer getSettle() { return settle; } @@ -323,9 +339,11 @@ if (null == this.status){ return null; } switch (this.status){ case 1: - return "姝e父"; + return "寰呭鏍�"; + case 2: + return "宸查�氳繃"; case 0: - return "绂佺敤"; + return "鍙栨秷"; default: return String.valueOf(this.status); } -- Gitblit v1.9.1