From a9b98ef2b0af7a4a830a2a4d3320d42e2779b152 Mon Sep 17 00:00:00 2001
From: Junjie <xjj@123>
Date: 星期三, 16 十月 2024 10:02:43 +0800
Subject: [PATCH] #出库待机位自动搜索

---
 zy-asrs-wcs/src/main/java/com/zy/asrs/wcs/core/entity/BasShuttle.java |   45 +++++++++++++++++++++++----------------------
 1 files changed, 23 insertions(+), 22 deletions(-)

diff --git a/zy-asrs-wcs/src/main/java/com/zy/asrs/wcs/core/entity/BasShuttle.java b/zy-asrs-wcs/src/main/java/com/zy/asrs/wcs/core/entity/BasShuttle.java
index 575f680..9a50b99 100644
--- a/zy-asrs-wcs/src/main/java/com/zy/asrs/wcs/core/entity/BasShuttle.java
+++ b/zy-asrs-wcs/src/main/java/com/zy/asrs/wcs/core/entity/BasShuttle.java
@@ -32,14 +32,26 @@
     private static final long serialVersionUID = 1L;
 
     /**
+     * ID
+     */
+    @ApiModelProperty(value= "ID")
+    @TableId(value = "id", type = IdType.AUTO)
+    private Integer id;
+
+    /**
+     * 璁惧ID
+     */
+    @ApiModelProperty(value= "璁惧ID")
+    private Integer deviceId;
+
+    /**
      * 鍥涘悜绌挎杞﹀彿
      */
     @ApiModelProperty(value= "鍥涘悜绌挎杞﹀彿")
-    @TableId(value = "shuttle_no", type = IdType.INPUT)
     private Integer shuttleNo;
 
     /**
-     * 鐘舵�� 1: 姝e父  0: 绂佺敤  
+     * 鐘舵�� 1: 姝e父  0: 绂佺敤
      */
     @ApiModelProperty(value= "鐘舵�� 1: 姝e父  0: 绂佺敤  ")
     private Integer status;
@@ -113,7 +125,7 @@
     private Integer runSpeed;
 
     /**
-     * 鏄惁鍒犻櫎 1: 鏄�  0: 鍚�  
+     * 鏄惁鍒犻櫎 1: 鏄�  0: 鍚�
      */
     @ApiModelProperty(value= "鏄惁鍒犻櫎 1: 鏄�  0: 鍚�  ")
     @TableLogic
@@ -131,28 +143,17 @@
     @ApiModelProperty(value= "璁惧鐘舵��")
     private String protocol;
 
+    /**
+     * 灏忚溅绂佺敤妤煎眰
+     */
+    @ApiModelProperty(value= "灏忚溅绂佺敤妤煎眰")
+    private String disableLev;
+
     public BasShuttle() {}
 
-    public BasShuttle(Integer shuttleNo, Integer status, Integer shuttleStatus, Integer taskNo, String idleLoc, Integer autoCharge, Integer chargeLine, Long createBy, Date createTime, Long updateBy, Date updateTime, String memo, Integer runSpeed, Integer deleted, Long hostId, String protocol) {
-        this.shuttleNo = shuttleNo;
-        this.status = status;
-        this.shuttleStatus = shuttleStatus;
-        this.taskNo = taskNo;
-        this.idleLoc = idleLoc;
-        this.autoCharge = autoCharge;
-        this.chargeLine = chargeLine;
-        this.createBy = createBy;
-        this.createTime = createTime;
-        this.updateBy = updateBy;
-        this.updateTime = updateTime;
-        this.memo = memo;
-        this.runSpeed = runSpeed;
-        this.deleted = deleted;
-        this.hostId = hostId;
-        this.protocol = protocol;
-    }
 
-    //    BasShuttle basShuttle = new BasShuttle(
+
+//    BasShuttle basShuttle = new BasShuttle(
 //            null,    // 鐘舵��
 //            null,    // 褰撳墠灏忚溅鐘舵��
 //            null,    // 浠诲姟鍙�

--
Gitblit v1.9.1