From f607860c57ef0b5fc9cca525a6b16c2f1ff9a9ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=A2=81=E6=B4=A5=E5=93=B2?= Date: Wed, 24 Jun 2020 11:34:33 +0800 Subject: [PATCH] =?UTF-8?q?Fix=20Bug=20#8845=20=E4=BF=AE=E6=94=B9=E5=85=B3?= =?UTF-8?q?=E9=94=AE=E9=9B=B6=E9=83=A8=E4=BB=B6=E7=BB=91=E5=AE=9A=E7=9A=84?= =?UTF-8?q?=E6=95=B0=E6=8D=AE=E5=88=97=E4=B8=AD=E5=A2=9E=E5=8A=A0=E5=B8=A6?= =?UTF-8?q?=E7=BB=91=E5=AE=9A=E6=9D=A1=E7=A0=81=E7=9A=84=E9=95=BF=E5=BA=A6?= =?UTF-8?q?=E3=80=81=E7=89=B9=E5=BE=81=E7=A0=81=E5=86=85=E5=AE=B9bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/java/cn/estsh/i3plus/pojo/mes/bean/MesStationBom.java | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/modules/i3plus-pojo-mes/src/main/java/cn/estsh/i3plus/pojo/mes/bean/MesStationBom.java b/modules/i3plus-pojo-mes/src/main/java/cn/estsh/i3plus/pojo/mes/bean/MesStationBom.java index a2cd693..85e63bf 100644 --- a/modules/i3plus-pojo-mes/src/main/java/cn/estsh/i3plus/pojo/mes/bean/MesStationBom.java +++ b/modules/i3plus-pojo-mes/src/main/java/cn/estsh/i3plus/pojo/mes/bean/MesStationBom.java @@ -138,6 +138,14 @@ public class MesStationBom extends BaseBean implements Serializable { @ApiParam("产品类型名称") private String produceCategoryName; + @Transient + @ApiParam("字符长度") + private Integer length; + + @Transient + @ApiParam("校验内容") + private String checkContent; + public double getQtyVal() { return this.qty == null ? 0.0d : this.qty; }