自动化立体仓库 - WMS系统
13
zhang
3 天以前 55eb3d480594f4c0dd382eaeeb8548bf911d6ad7
src/main/java/com/zy/asrs/service/NodeService.java
@@ -1,21 +1,18 @@
package com.zy.asrs.service;
import com.baomidou.mybatisplus.service.IService;
import com.core.common.R;
import com.zy.asrs.entity.Node;
import com.zy.asrs.entity.param.PakinParam;
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);
}