From 1815bcadb613f8951c02031176d2b54dcfa5a393 Mon Sep 17 00:00:00 2001
From: chen.llin <1442464845@qq.comm>
Date: 星期六, 17 一月 2026 11:09:57 +0800
Subject: [PATCH] agv出入库根据pda扫描库位识别入库站点
---
src/main/java/com/zy/asrs/service/NodeService.java | 14 ++++++++------
1 files changed, 8 insertions(+), 6 deletions(-)
diff --git a/src/main/java/com/zy/asrs/service/NodeService.java b/src/main/java/com/zy/asrs/service/NodeService.java
index 29fd936..017e5e8 100644
--- a/src/main/java/com/zy/asrs/service/NodeService.java
+++ b/src/main/java/com/zy/asrs/service/NodeService.java
@@ -10,17 +10,19 @@
public interface NodeService extends IService<Node> {
- Node getTop();
+ Node getTop();
- Node selectByUuid(String uuid);
+ Node selectByUuid(String uuid);
- Node selectByUuid(String uuid, Long hostId);
+ Node selectByUuid(String uuid, Long hostId);
- Node selectByUuid(String uuid, Long hostId, Integer type);
+ Node selectByUuid(String uuid, Long hostId, Integer type);
- Node selectByUuid(String uuid, Long hostId, Integer type, Long parentId);
+ Node selectByUuid(String uuid, Long hostId, Integer type, Long parentId);
R stockPakin(PakinParam number, Long userId, Long hostId);
- R initPakout(List<InitPakoutParam> params, Long userId, Long hostId);
+ R initPakout(List<InitPakoutParam> params, Long userId, Long hostId);
+
+ void locMove(String sourceLocNo, String targetLocNo, Long userId);
}
--
Gitblit v1.9.1