自动化立体仓库 - WMS系统
13
zhang
2025-10-20 10d7b3239e4baec952b9ee8a3e948399916d336c
src/main/java/com/zy/asrs/service/NodeService.java
@@ -10,17 +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);
}