From d80dd0abcb56aacf30bc32e424ff398f7ccce730 Mon Sep 17 00:00:00 2001 From: luxiaotao1123 <t1341870251@163.com> Date: 星期五, 26 三月 2021 13:17:00 +0800 Subject: [PATCH] # --- src/main/java/zy/cloud/wms/manager/entity/CustOrder.java | 25 +++++++++++++++++++++---- 1 files changed, 21 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 af7f0e1..eeb2b63 100644 --- a/src/main/java/zy/cloud/wms/manager/entity/CustOrder.java +++ b/src/main/java/zy/cloud/wms/manager/entity/CustOrder.java @@ -55,6 +55,12 @@ private Double qty; /** + * 鎬绘暟閲� + */ + @ApiModelProperty(value= "鎬绘暟閲�") + private Double total; + + /** * 鍟嗗搧鍗曚环 */ @ApiModelProperty(value= "鍟嗗搧鍗曚环") @@ -69,7 +75,7 @@ /** * 鐘舵�� 1: 寰呭鐞� 2: 宸插畬鎴� 3: 鍙栨秷 4: 寮傚父 */ - @ApiModelProperty(value= "鐘舵�� 1: 寰呭鐞� 2: 宸插畬鎴� 3: 鍙栨秷 4: 寮傚父 ") + @ApiModelProperty(value= "鐘舵�� 0: 杞藉叆涓� 1: 寰呭鐞� 2: 鏈嫞璐� 3: 鍙栨秷 4: 宸插畬鎴� ") private Integer status; /** @@ -94,13 +100,14 @@ 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,String userCode,Double qty,Double total,Double price,String comment,Integer status,Date createTime,Date updateTime,String memo) { this.number = number; this.billDate = billDate; this.bTypeId = bTypeId; this.eTypeId = eTypeId; this.userCode = userCode; this.qty = qty; + this.total = total; this.price = price; this.comment = comment; this.status = status; @@ -172,6 +179,14 @@ this.qty = qty; } + public Double getTotal() { + return total; + } + + public void setTotal(Double total) { + this.total = total; + } + public Double getPrice() { return price; } @@ -195,14 +210,16 @@ public String getStatus$(){ if (null == this.status){ return null; } switch (this.status){ + case 0: + return "杞藉叆涓�"; case 1: return "寰呭鐞�"; case 2: - return "宸插畬鎴�"; + return "鏈嫞璐�"; case 3: return "鍙栨秷"; case 4: - return "寮傚父"; + return "宸插畬鎴�"; default: return String.valueOf(this.status); } -- Gitblit v1.9.1