From 82de5a307466894bbb0258f8a63a26a7bb96d80d Mon Sep 17 00:00:00 2001 From: zhang <zc857179121@qq.com> Date: 星期四, 16 十月 2025 09:55:35 +0800 Subject: [PATCH] 13 --- src/main/java/com/zy/asrs/service/NodeService.java | 15 +++++---------- 1 files changed, 5 insertions(+), 10 deletions(-) diff --git a/src/main/java/com/zy/asrs/service/NodeService.java b/src/main/java/com/zy/asrs/service/NodeService.java index 2de56d4..e44a867 100644 --- a/src/main/java/com/zy/asrs/service/NodeService.java +++ b/src/main/java/com/zy/asrs/service/NodeService.java @@ -10,19 +10,14 @@ 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); - - void locMove(String sourceLocNo, String targetLocNo, Long userId); } -- Gitblit v1.9.1