From 8bc69dccd6683a7bf13bfbcfffd8fec9bd688887 Mon Sep 17 00:00:00 2001
From: zwl <1051256694@qq.com>
Date: 星期五, 20 三月 2026 20:25:20 +0800
Subject: [PATCH] #

---
 src/main/java/com/zy/asrs/entity/WrkMastLog.java |   21 +++++++++------------
 1 files changed, 9 insertions(+), 12 deletions(-)

diff --git a/src/main/java/com/zy/asrs/entity/WrkMastLog.java b/src/main/java/com/zy/asrs/entity/WrkMastLog.java
index 820f59d..be8e882 100644
--- a/src/main/java/com/zy/asrs/entity/WrkMastLog.java
+++ b/src/main/java/com/zy/asrs/entity/WrkMastLog.java
@@ -30,6 +30,7 @@
     private Long id;
 
     @ApiModelProperty("鏃ュ織ID")
+    @TableField("log_id")
     private Long logId;
 
     /**
@@ -101,14 +102,14 @@
      */
     @ApiModelProperty(value = "鐩爣绔�")
     @TableField("sta_no")
-    private Integer staNo;
+    private String staNo;
 
     /**
      * 婧愮珯
      */
     @ApiModelProperty(value = "婧愮珯")
     @TableField("source_sta_no")
-    private Integer sourceStaNo;
+    private String sourceStaNo;
 
     /**
      * 婧愬簱浣�
@@ -397,21 +398,17 @@
     }
 
     public String getStaNo$() {
-        BasDevpService service = SpringUtils.getBean(BasDevpService.class);
-        BasDevp basDevp = service.selectById(this.staNo);
-        if (!Cools.isEmpty(basDevp)) {
-            return String.valueOf(basDevp.getDevNo());
+        if (Cools.isEmpty(this.staNo)) {
+            return null;
         }
-        return null;
+        return this.staNo;
     }
 
     public String getSourceStaNo$() {
-        BasDevpService service = SpringUtils.getBean(BasDevpService.class);
-        BasDevp basDevp = service.selectById(this.sourceStaNo);
-        if (!Cools.isEmpty(basDevp)) {
-            return String.valueOf(basDevp.getDevNo());
+        if (Cools.isEmpty(this.sourceStaNo)) {
+            return null;
         }
-        return null;
+        return this.sourceStaNo;
     }
 
     public String getSourceLocNo$() {

--
Gitblit v1.9.1