From 6298f178c71f1eb95d4066ffe88d4becd6fc6bfc Mon Sep 17 00:00:00 2001 From: zyx <zyx123456> Date: 星期四, 11 七月 2024 08:34:42 +0800 Subject: [PATCH] #MES上报 --- src/main/java/com/zy/asrs/entity/AgvWaitPakin.java | 32 +++++++++++++++++++++++++++++++- 1 files changed, 31 insertions(+), 1 deletions(-) diff --git a/src/main/java/com/zy/asrs/entity/AgvWaitPakin.java b/src/main/java/com/zy/asrs/entity/AgvWaitPakin.java index 2dc0a4e..8c0561b 100644 --- a/src/main/java/com/zy/asrs/entity/AgvWaitPakin.java +++ b/src/main/java/com/zy/asrs/entity/AgvWaitPakin.java @@ -16,7 +16,7 @@ public class AgvWaitPakin implements Serializable { private static final long serialVersionUID = 1L; - @ApiModelProperty(value= "鎵樼洏鏉$爜") + @ApiModelProperty(value= "璐ф灦鏉$爜") private String zpallet; @ApiModelProperty(value= "鏁伴噺") @@ -151,6 +151,10 @@ @ApiModelProperty(value= "澶囨敞") private String memo; + @ApiModelProperty(value= "璐т綅绫诲瀷 1: 寰呭寘瑁呮垚鍝� 2: 鍘熸潗鏂� 3锛氱澹�") + @TableField("loc_type") + private Integer locType; + public String getBeBatch$(){ if (null == this.beBatch){ return null; } switch (this.beBatch){ @@ -160,6 +164,20 @@ return "鍚�"; default: return String.valueOf(this.beBatch); + } + } + + public String getLocType$(){ + if (null == this.locType){ return null; } + switch (this.locType){ + case 1: + return "寰呭寘瑁呮垚鍝�"; + case 2: + return "鍘熸潗鏂�"; + case 3: + return "绠卞3"; + default: + return String.valueOf(this.locType); } } @@ -201,6 +219,18 @@ } } + public String getIoStatus$(){ + if (null == this.ioStatus){ return null; } + switch (this.ioStatus){ + case "N": + return "鏈叆搴�"; + case "Y": + return "鍏ュ簱涓�"; + default: + return this.ioStatus; + } + } + public String getModiTime$(){ if (Cools.isEmpty(this.modiTime)){ return ""; -- Gitblit v1.9.1