From d6d25613f504d8fc4c6ffa8a1854beb4dac044d0 Mon Sep 17 00:00:00 2001
From: chen.llin <1442464845@qq.comm>
Date: 星期日, 18 一月 2026 09:16:24 +0800
Subject: [PATCH] 菜单

---
 src/main/java/com/zy/asrs/entity/WrkMastLog.java |   30 ++++++++++++++++++++++++------
 1 files changed, 24 insertions(+), 6 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..4e926ad 100644
--- a/src/main/java/com/zy/asrs/entity/WrkMastLog.java
+++ b/src/main/java/com/zy/asrs/entity/WrkMastLog.java
@@ -4,11 +4,11 @@
 import com.baomidou.mybatisplus.annotations.TableId;
 import com.baomidou.mybatisplus.annotations.TableName;
 import com.baomidou.mybatisplus.enums.IdType;
+import com.core.common.Cools;
+import com.core.common.SpringUtils;
 import com.zy.asrs.service.*;
 import com.zy.system.entity.User;
 import com.zy.system.service.UserService;
-import com.core.common.Cools;
-import com.core.common.SpringUtils;
 import io.swagger.annotations.ApiModelProperty;
 import lombok.Data;
 
@@ -29,8 +29,9 @@
     @TableId(value = "id", type = IdType.AUTO)
     private Long id;
 
-    @ApiModelProperty("鏃ュ織ID")
-    private Long logId;
+    @ApiModelProperty("浠诲姟绫诲瀷锛� agv, crn")
+    @TableField("task_type")
+    private String taskType;
 
     /**
      * 宸ヤ綔鍙�
@@ -273,8 +274,8 @@
     private String manuType;
 
     @ApiModelProperty(value = "")
-    @TableField("memo_m")
-    private String memoM;
+    @TableField("memo")
+    private String memo;
 
     @ApiModelProperty(value = "")
     @TableField("sc_weight")
@@ -327,9 +328,26 @@
     @TableField("take_none")
     private String takeNone;
 
+    /**
+     * 鍛煎彨agv 1.鍑嗗鍛煎彨锛�2.宸插懠鍙�
+     */
+    @ApiModelProperty(value = "鍛煎彨agv 1.鍑嗗鍛煎彨锛�2.宸插懠鍙�")
+    @TableField("call_agv")
+    private Integer callAgv;
+
     public WrkMastLog() {
     }
 
+    public String getCallAgv$() {
+        switch (this.callAgv) {
+            case 0: return "鏈懠鍙�";
+            case 1: return "鍑嗗鍛煎彨";
+            case 2: return "宸插懠鍙�";
+            default:
+        }
+        return "";
+    }
+
     public String getWrkNo$() {
         WrkMastService service = SpringUtils.getBean(WrkMastService.class);
         WrkMast wrkMast = service.selectById(this.wrkNo);

--
Gitblit v1.9.1