From 9611dc686299be640ce5e5f5990c747765161ec7 Mon Sep 17 00:00:00 2001
From: chen.llin <1442464845@qq.comm>
Date: 星期三, 21 一月 2026 10:59:38 +0800
Subject: [PATCH] agv逻辑调整2

---
 src/main/java/com/zy/asrs/entity/WrkMast.java |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/src/main/java/com/zy/asrs/entity/WrkMast.java b/src/main/java/com/zy/asrs/entity/WrkMast.java
index 1767d50..b594953 100644
--- a/src/main/java/com/zy/asrs/entity/WrkMast.java
+++ b/src/main/java/com/zy/asrs/entity/WrkMast.java
@@ -345,13 +345,16 @@
     }
 
     public String getCallAgv$() {
+        if (this.callAgv == null) {
+            return "";
+        }
         switch (this.callAgv) {
             case 0: return "鏈懠鍙�";
             case 1: return "鍑嗗鍛煎彨";
             case 2: return "宸插懠鍙�";
             default:
+                return "";
         }
-        return "";
     }
 
     public String getWrkSts$() {

--
Gitblit v1.9.1