From 03f7617b415bc653fa2e14c28e4f41663a130476 Mon Sep 17 00:00:00 2001
From: zwl <1051256694@qq.com>
Date: 星期日, 04 一月 2026 09:27:27 +0800
Subject: [PATCH] 1.完善连接器库入库请求 2.完善电视机显示程序 3.新增PDA给输送线下发入库 4.新增绑定和解绑测试区域是否有空库位 5.新增AGV离站信号 6.完善空托盘入库
---
src/main/java/com/zy/core/properties/SlaveProperties.java | 13 +++++++++++++
1 files changed, 13 insertions(+), 0 deletions(-)
diff --git a/src/main/java/com/zy/core/properties/SlaveProperties.java b/src/main/java/com/zy/core/properties/SlaveProperties.java
index b2e19a4..079a641 100644
--- a/src/main/java/com/zy/core/properties/SlaveProperties.java
+++ b/src/main/java/com/zy/core/properties/SlaveProperties.java
@@ -4,6 +4,7 @@
import com.zy.core.model.CrnSlave;
import com.zy.core.model.DevpSlave;
import com.zy.core.model.LedSlave;
+import com.zy.core.model.RgvSlave;
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Configuration;
@@ -28,6 +29,16 @@
private List<Integer> doubleLocs = new ArrayList<>();
+ // 宸︽繁搴撲綅鎺掑彿
+ private List<Integer> doubleLocsLeft = new ArrayList<>();
+ // 鍙虫繁搴撲綅鎺掑彿
+ private List<Integer> doubleLocsRight = new ArrayList<>();
+
+ // 宸︽祬搴撲綅鎺掑彿
+ private List<Integer> shallowLocsLeft = new ArrayList<>();
+ // 鍙虫祬搴撲綅鎺掑彿
+ private List<Integer> shallowLocsRight = new ArrayList<>();
+
private int groupCount;
private List<CrnSlave> crn = new ArrayList<>();
@@ -42,4 +53,6 @@
private List<Slave> car = new ArrayList<>();
+ private List<RgvSlave> rgv = new ArrayList<>();
+
}
--
Gitblit v1.9.1