From 9f05696822f8feee385a34a92dd9aa16009e84a0 Mon Sep 17 00:00:00 2001
From: Junjie <fallin.jie@qq.com>
Date: 星期日, 18 六月 2023 12:38:00 +0800
Subject: [PATCH] 寻路算法,地图节点优化,剔除原入出库模式获取地图节点方案,改为根据库位状态实时获取节点信息或直接获取无过滤的完整节点信息

---
 src/main/java/com/zy/asrs/entity/WrkMast.java |   35 ++++++++++++++++++++++++++++++++++-
 1 files changed, 34 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 e896efc..860704d 100644
--- a/src/main/java/com/zy/asrs/entity/WrkMast.java
+++ b/src/main/java/com/zy/asrs/entity/WrkMast.java
@@ -67,6 +67,20 @@
     @TableField("crn_no")
     private Integer crnNo;
 
+    /**
+     * 绌挎杞�
+     */
+    @ApiModelProperty(value= "绌挎杞�")
+    @TableField("ste_no")
+    private Integer steNo;
+
+    /**
+     * 杈圭紭搴撲綅
+     */
+    @ApiModelProperty(value= "杈圭紭搴撲綅")
+    @TableField("out_most")
+    private Integer outMost;
+
     @ApiModelProperty(value= "")
     @TableField("sheet_no")
     private String sheetNo;
@@ -295,7 +309,7 @@
 
     @ApiModelProperty(value= "")
     @TableField("Pdc_type")
-    private String PdcType;
+    private String pdcType;
 
     @ApiModelProperty(value= "")
     @TableField("ctn_no")
@@ -307,6 +321,13 @@
     @ApiModelProperty(value= "婊℃澘")
     @TableField("full_plt")
     private String fullPlt;
+
+    /**
+     * 鍥涘悜绌挎杞﹀彿
+     */
+    @ApiModelProperty(value= "鍥涘悜绌挎杞﹀彿")
+    @TableField("shuttle_no")
+    private Integer shuttleNo;
 
     public String getWrkSts$(){
         BasWrkStatusMapper mapper = SpringUtils.getBean(BasWrkStatusMapper.class);
@@ -484,4 +505,16 @@
         return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.logErrTime);
     }
 
+    public String getOutMost$() {
+        if (null == this.outMost){ return null; }
+        switch (this.outMost){
+            case 1:
+                return "杈圭紭搴撲綅";
+            case 0:
+                return "鍐呰仈搴撲綅";
+            default:
+                return String.valueOf(this.outMost);
+        }
+    }
+
 }

--
Gitblit v1.9.1