From 9ed4cb53a2c643b879f993537f5a2793fba56ba1 Mon Sep 17 00:00:00 2001 From: ZY <zc857179121@qq.com> Date: 星期一, 31 三月 2025 07:57:13 +0800 Subject: [PATCH] 1 --- src/main/java/com/zy/asrs/entity/AgvWaitPakinLog.java | 41 +++++++++++++++++++++++++++++++++++++++++ 1 files changed, 41 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/zy/asrs/entity/AgvWaitPakinLog.java b/src/main/java/com/zy/asrs/entity/AgvWaitPakinLog.java index 28ebb8c..4afc0c5 100644 --- a/src/main/java/com/zy/asrs/entity/AgvWaitPakinLog.java +++ b/src/main/java/com/zy/asrs/entity/AgvWaitPakinLog.java @@ -151,6 +151,33 @@ @ApiModelProperty(value= "澶囨敞") private String memo; + @ApiModelProperty(value= "璐т綅绫诲瀷 1: 寰呭寘瑁呮垚鍝� 2: 鍘熸潗鏂� 3锛氱澹�") + @TableField("loc_type") + private Integer locType; + + /** + * 宸ュ簭鐘舵�� + */ + @ApiModelProperty(value= "宸ュ簭鐘舵�� 1锛氬緟鍔犲伐锛�2锛氬凡鍔犲伐锛�3锛氭棤闇�鍔犲伐") + @TableField("process_sts") + private Integer processSts; + + public String getProcessSts$(){ + if (null == this.processSts){ return null; } + switch (this.processSts){ + case 0: + return "鍏朵粬"; + case 1: + return "寰呭姞宸�"; + case 2: + return "宸插姞宸�"; + case 3: + return "鏃犻渶鍔犲伐"; + default: + return String.valueOf(this.processSts); + } + } + public String getBeBatch$(){ if (null == this.beBatch){ return null; } switch (this.beBatch){ @@ -163,6 +190,20 @@ } } + 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); + } + } + public String getSource$(){ if (null == this.source){ return null; } switch (this.source){ -- Gitblit v1.9.1