自动化立体仓库 - WMS系统
#
18516761980
2022-10-06 b55ec70223cb8af0d59f868cbd5e8c53a53e47a3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.zy.asrs.service;
 
import com.baomidou.mybatisplus.service.IService;
import com.zy.asrs.entity.Node;
 
public interface NodeService extends IService<Node> {
 
        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);
}