From c2f77cb1c01b8215fd2fc8c76fd4180629b7f08f Mon Sep 17 00:00:00 2001 From: whycq <10027870+whycq@user.noreply.gitee.com> Date: 星期一, 12 九月 2022 14:47:35 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/zypms' into zypms --- src/main/java/zy/cloud/wms/manager/entity/FlowStatus.java | 14 ++++++++++++++ 1 files changed, 14 insertions(+), 0 deletions(-) diff --git a/src/main/java/zy/cloud/wms/manager/entity/FlowStatus.java b/src/main/java/zy/cloud/wms/manager/entity/FlowStatus.java index 1a96f61..0d74dbd 100644 --- a/src/main/java/zy/cloud/wms/manager/entity/FlowStatus.java +++ b/src/main/java/zy/cloud/wms/manager/entity/FlowStatus.java @@ -61,6 +61,13 @@ @TableField("weight_num") private Integer weightNum; + /** + * 0锛氬父瑙勯」鐩� + * 1锛氶泦鎴愰」鐩� + */ + @TableField("is_asrs") + private Integer isAsrs; + // FlowStatus flowStatus = new FlowStatus( // null, // 鑺傜偣绫诲瀷 @@ -71,6 +78,13 @@ // null // // ); + public String getIsAsrs$(){ + if (this.isAsrs == 0) { + return "甯歌椤圭洰"; + }else { + return "闆嗘垚椤圭洰"; + } + } public Integer getId() { return id; } -- Gitblit v1.9.1