From 7df617b290038bfc8251bf7aad0b93cbfc06c058 Mon Sep 17 00:00:00 2001 From: "puxiao.liao" Date: Wed, 27 Nov 2019 20:07:34 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E8=B4=A8=E6=A3=80=E5=8D=95=E6=9F=A5?= =?UTF-8?q?=E8=AF=A2=E7=95=8C=E9=9D=A2=E9=9C=80=E8=A6=81=E6=94=AF=E6=8C=81?= =?UTF-8?q?=E6=8C=89=E7=85=A7ASN=E5=92=8C=E9=9B=B6=E4=BB=B6=E5=8F=B7?= =?UTF-8?q?=E6=9F=A5=E8=AF=A2=EF=BC=8C=E6=98=BE=E7=A4=BA=E5=87=BA=E7=9A=84?= =?UTF-8?q?=E6=98=8E=E7=BB=86=E4=B8=AD=E8=B4=A8=E4=B8=AD=E8=A6=81=E6=98=BE?= =?UTF-8?q?=E7=A4=BA=E7=89=A9=E6=96=99=E4=BF=A1=E6=81=AF=E3=80=91bug6651?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/cn/estsh/i3plus/pojo/wms/bean/WmsQCMaster.java | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/modules/i3plus-pojo-wms/src/main/java/cn/estsh/i3plus/pojo/wms/bean/WmsQCMaster.java b/modules/i3plus-pojo-wms/src/main/java/cn/estsh/i3plus/pojo/wms/bean/WmsQCMaster.java index 7d79a3b..33ed3df 100644 --- a/modules/i3plus-pojo-wms/src/main/java/cn/estsh/i3plus/pojo/wms/bean/WmsQCMaster.java +++ b/modules/i3plus-pojo-wms/src/main/java/cn/estsh/i3plus/pojo/wms/bean/WmsQCMaster.java @@ -95,7 +95,23 @@ public class WmsQCMaster extends BaseBean { @AnnoOutputColumn(refClass = WmsEnumUtil.TRUE_OR_FALSE.class, refForeignKey = "value", value = "description") public Integer isPart; + @Transient + @ApiParam(value = "零件号") + public String partNo; + public int getOrderStatusVal() { return this.orderStatus == null ? 0 : this.orderStatus; } + + public WmsQCMaster () { + + } + + public WmsQCMaster (String orderNo, String vendorNo, String refType, String refSrc, String partNo) { + this.orderNo = orderNo; + this.vendorNo = vendorNo; + this.refType = refType; + this.refSrc = refSrc; + this.partNo = partNo; + } }