Browse Source

1、新增桶装接驳位信息
2、新增任务状态信息

LZH 1 năm trước cách đây
mục cha
commit
8dabd6736c

+ 11 - 1
warewms-base/src/main/java/com/ruoyi/base/constant/Constant.java

@@ -28,6 +28,11 @@ public class Constant {
      */
     public static final Long LOC_SORTATION_CACHE = 99998l;
 
+    /**
+     * 桶装接驳位
+     */
+    public static final Long DRUM_CONNECTORS = 100733l;
+
     /**
      * 中间缓存位
      * AGV作业搬运任务时候库存的虚拟库位
@@ -47,6 +52,7 @@ public class Constant {
     public static final String WCS_TASK_URL3 = "http://localhost:8082/adaptor/wms/bill/cancel";
     // WCS智库 agv入库任务下发
     public static final String WCS_TASK_URL4 = "http://localhost:8082/adaptor/agv/in/task";
+//    public static final String WCS_TASK_URL4 = "http://localhost:8008/test/wcs/test1";
     // WCS智库 agv回调wcs卸货完成
     public static final String WCS_TASK_URL5 = "http://localhost:8082/adaptor/agv/callback/intask?taskNo=";
     // WCS智库 agv回调wcs取货完成
@@ -576,7 +582,11 @@ public class Constant {
         /**
          * 已下发
          */
-        TASK10(10);
+        TASK10(10),
+        /**
+         * 生成
+         */
+        TASK13(13);
 
 
         private Integer value;