From c72f5e4d5fb2a314480f376be6dceb93b08cf060 Mon Sep 17 00:00:00 2001 From: luxiaotao1123 <t1341870251@63.com> Date: 星期二, 14 九月 2021 08:20:44 +0800 Subject: [PATCH] # --- src/main/java/zy/cloud/wms/manager/entity/Check.java | 26 ++++++++++++++++++++++---- 1 files changed, 22 insertions(+), 4 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..0af6a05 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: 鐩樹簭 ") @@ -109,7 +116,7 @@ /** * 鐘舵�� 1: 姝e父 0: 绂佺敤 */ - @ApiModelProperty(value= "鐘舵�� 1: 姝e父 0: 绂佺敤 ") + @ApiModelProperty(value= "鐘舵�� 1: 寰呭鏍� 2: 宸查�氳繃 0: 鍙栨秷 ") private Integer status; /** @@ -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