From 1f1f6ec8258ce7e7db243f99d2e927e6eafa7e2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E6=80=9D=E6=B4=81?= Date: Thu, 2 Jan 2020 17:37:49 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90KT-1346=20=E5=A2=9E=E5=8A=A0=E6=8B=89?= =?UTF-8?q?=E5=8A=A8=E4=BB=BB=E5=8A=A1=E7=9A=84=E6=9A=82=E5=81=9C=E5=92=8C?= =?UTF-8?q?=E5=BC=80=E5=90=AF=E3=80=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/cn/estsh/i3plus/pojo/wms/bean/WmsPullTaskMaster.java | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/modules/i3plus-pojo-wms/src/main/java/cn/estsh/i3plus/pojo/wms/bean/WmsPullTaskMaster.java b/modules/i3plus-pojo-wms/src/main/java/cn/estsh/i3plus/pojo/wms/bean/WmsPullTaskMaster.java index 03a57f9..f7d6c15 100644 --- a/modules/i3plus-pojo-wms/src/main/java/cn/estsh/i3plus/pojo/wms/bean/WmsPullTaskMaster.java +++ b/modules/i3plus-pojo-wms/src/main/java/cn/estsh/i3plus/pojo/wms/bean/WmsPullTaskMaster.java @@ -58,9 +58,15 @@ public class WmsPullTaskMaster extends BaseBean{ @ApiParam(value = "单据状态", example = "0") private Integer orderStatus = 0; + @Column(name="IS_SUSPEND") + @ApiParam(value = "是否暂停", example = "0") + private Integer isSuspend = 2; + public Integer getOrderStatus() { return orderStatus == null ? 0 : this.orderStatus.intValue(); } - + public Integer getIsSuspend() { + return isSuspend == null ? 0 : this.isSuspend.intValue(); + } } \ No newline at end of file