自动化立体仓库 - WMS系统
zjj
2023-06-15 36ee5dcf26d772d3e1debb4893f65a42cb65e8f3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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.ManLocDetl;
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> {
 
        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<InitPakoutParam> params, Long userId, Long hostId, User user);
 
    void locMove(String sourceLocNo, String targetLocNo, Long userId , User user);
 
    Page<Node> getPage(Page<Node> page);
}