From 61dbf118522a9ac98027b624b5d46761fe536bbe Mon Sep 17 00:00:00 2001
From: zc <zc@123>
Date: 星期五, 25 四月 2025 10:26:46 +0800
Subject: [PATCH] 初步调试

---
 src/main/java/com/zy/asrs/entity/BasLift.java |  135 +++-----------------------------------------
 1 files changed, 10 insertions(+), 125 deletions(-)

diff --git a/src/main/java/com/zy/asrs/entity/BasLift.java b/src/main/java/com/zy/asrs/entity/BasLift.java
index 2cddf57..66b85e2 100644
--- a/src/main/java/com/zy/asrs/entity/BasLift.java
+++ b/src/main/java/com/zy/asrs/entity/BasLift.java
@@ -6,7 +6,6 @@
 import java.text.SimpleDateFormat;
 import java.util.Date;
 
-import com.zy.core.model.protocol.NyShuttleProtocol;
 import org.springframework.format.annotation.DateTimeFormat;
 import com.core.common.SpringUtils;
 import com.zy.system.service.UserService;
@@ -74,120 +73,22 @@
     private Boolean pakMk;
 
     /**
+     * 璁惧鐘舵��
+     */
+    @ApiModelProperty(value= "璁惧鐘舵��")
+    @TableField("device_status")
+    private String deviceStatus;
+
+    /**
      * 鎻愬崌鏈哄潗鏍�
      */
     @ApiModelProperty(value= "鎻愬崌鏈哄潗鏍�")
     @TableField("point")
-    private NyShuttleProtocol.NyShuttlePointClass point;
-
-    /**
-     * 妯″紡
-     */
-    @ApiModelProperty(value= "妯″紡")
-    @TableField("model")
-    private Boolean model;
-
-    /**
-     * 蹇欓棽
-     */
-    @ApiModelProperty(value= "蹇欓棽")
-    @TableField("busy")
-    private Boolean busy;
-
-    /**
-     * 鍓嶈秴闄�
-     */
-    @ApiModelProperty(value= "鍓嶈秴闄�")
-    @TableField("front_overrun")
-    private Boolean frontOverrun;
-
-    /**
-     * 鍚庤秴闄�
-     */
-    @ApiModelProperty(value= "鍚庤秴闄�")
-    @TableField("back_overrun")
-    private Boolean backOverrun;
-
-    /**
-     * 宸﹁秴闄�
-     */
-    @ApiModelProperty(value= "宸﹁秴闄�")
-    @TableField("left_overrun")
-    private Boolean leftOverrun;
-
-    /**
-     * 鍙宠秴闄�
-     */
-    @ApiModelProperty(value= "鍙宠秴闄�")
-    @TableField("right_overrun")
-    private Boolean rightOverrun;
-
-    /**
-     * 瓒呴珮
-     */
-    @ApiModelProperty(value= "瓒呴珮")
-    @TableField("over_height")
-    private Boolean overHeight;
-
-    /**
-     * 瓒呴噸
-     */
-    @ApiModelProperty(value= "瓒呴噸")
-    @TableField("over_weight")
-    private Boolean overWeight;
-
-    /**
-     * 鏈夋墭鐩�
-     */
-    @ApiModelProperty(value= "鏈夋墭鐩�")
-    @TableField("has_tray")
-    private Boolean hasTray;
-
-    /**
-     * 鏈夊皬杞�
-     */
-    @ApiModelProperty(value= "鏈夊皬杞�")
-    @TableField("has_car")
-    private Boolean hasCar;
-
-    /**
-     * 璁惧鏁呴殰
-     */
-    @ApiModelProperty(value= "璁惧鏁呴殰")
-    @TableField("device_error")
-    private Boolean deviceError;
-
-    /**
-     * 浠诲姟鍦板潃
-     */
-    @ApiModelProperty(value= "浠诲姟鍦板潃")
-    @TableField("task_address")
-    private Integer taskAddress;
-
-    /**
-     * 鐩殑鍦板潃
-     */
-    @ApiModelProperty(value= "鐩殑鍦板潃")
-    @TableField("dist_address")
-    private Integer distAddress;
-
-    /**
-     * 宸插畬鎴愪换鍔″彿
-     */
-    @ApiModelProperty(value= "宸插畬鎴愪换鍔″彿")
-    @TableField("complete_task_no")
-    private Integer completeTaskNo;
-
-    /**
-     * 妤煎眰
-     */
-    @ApiModelProperty(value= "妤煎眰")
-    @TableField("lev")
-    private Integer lev;
+    private String point;
 
     public BasLift() {}
 
-    public BasLift(Integer liftNo, Integer status, Integer wrkNo, Date updateTime, Long updateBy, String memo, Boolean pakMk, NyShuttleProtocol.NyShuttlePointClass point, Boolean model, Boolean busy, Boolean frontOverrun, Boolean backOverrun, Boolean leftOverrun, Boolean rightOverrun, Boolean overHeight, Boolean overWeight, Boolean hasTray, Boolean hasCar, Boolean deviceError, Integer taskAddress, Integer distAddress, Integer completeTaskNo, Integer lev) {
+    public BasLift(Integer liftNo, Integer status, Integer wrkNo, Date updateTime, Long updateBy, String memo, Boolean pakMk, String deviceStatus) {
         this.liftNo = liftNo;
         this.status = status;
         this.wrkNo = wrkNo;
@@ -195,22 +96,7 @@
         this.updateBy = updateBy;
         this.memo = memo;
         this.pakMk = pakMk;
-        this.point = point;
-        this.model = model;
-        this.busy = busy;
-        this.frontOverrun = frontOverrun;
-        this.backOverrun = backOverrun;
-        this.leftOverrun = leftOverrun;
-        this.rightOverrun = rightOverrun;
-        this.overHeight = overHeight;
-        this.overWeight = overWeight;
-        this.hasTray = hasTray;
-        this.hasCar = hasCar;
-        this.deviceError = deviceError;
-        this.taskAddress = taskAddress;
-        this.distAddress = distAddress;
-        this.completeTaskNo = completeTaskNo;
-        this.lev = lev;
+        this.deviceStatus = deviceStatus;
     }
 
     public String getUpdateTime$(){
@@ -228,6 +114,5 @@
         }
         return null;
     }
-
 
 }

--
Gitblit v1.9.1