From bb5c2ee537cea071a9d6532ce5eca21748f066d8 Mon Sep 17 00:00:00 2001
From: chen.llin <1442464845@qq.comm>
Date: 星期六, 24 一月 2026 12:31:28 +0800
Subject: [PATCH] 移除 @import url(https://fonts.googleapis.com/css?family=Homenaje); 移除 @import url(https://fonts.googleapis.com/css?family=Noto+Serif+JP);
---
src/main/java/com/zy/asrs/service/NodeService.java | 17 ++++++++++++-----
1 files changed, 12 insertions(+), 5 deletions(-)
diff --git a/src/main/java/com/zy/asrs/service/NodeService.java b/src/main/java/com/zy/asrs/service/NodeService.java
index a77f9f8..017e5e8 100644
--- a/src/main/java/com/zy/asrs/service/NodeService.java
+++ b/src/main/java/com/zy/asrs/service/NodeService.java
@@ -3,19 +3,26 @@
import com.baomidou.mybatisplus.service.IService;
import com.core.common.R;
import com.zy.asrs.entity.Node;
+import com.zy.asrs.entity.param.InitPakoutParam;
import com.zy.asrs.entity.param.PakinParam;
+
+import java.util.List;
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