package com.zy.asrs.service; import com.baomidou.mybatisplus.plugins.Page; 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 com.zy.system.entity.User; import java.util.List; public interface NodeService extends IService { Node getTop(); Node selectByUuid(String uuid); Node selectByUuid(String uuid, Long hostId); Node selectByUuid(String uuid, Long hostId, Integer type); Node selectByUuid(String uuid, Long hostId, Integer type, Long parentId); R stockPakin(PakinParam number, Long userId, Long hostId, User user); R initPakout(List params, Long userId, Long hostId,User user); void locMove(String sourceLocNo, String targetLocNo, Long userId,User user); Page getPage(Page page); Node selectByParentName(String parentName); }