src/main/java/com/zy/asrs/service/NodeService.java
@@ -1,7 +1,9 @@ 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> { @@ -14,4 +16,6 @@ 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); }