自动化立体仓库 - WMS系统
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
package com.zy.asrs.service;
 
import com.baomidou.mybatisplus.service.IService;
import com.zy.asrs.entity.AgvWrkMast;
 
import java.io.IOException;
import java.util.List;
 
public interface AgvWrkMastService extends IService<AgvWrkMast> {
 
    public void updateWrkStsByWrkNo(int wrkNo, long wrkSts);
 
    public int startWrk(List<AgvWrkMast> agvWrkMastList, String taskType) throws IOException;
 
    public int containerMoveIn(List<AgvWrkMast> agvWrkMastList) throws IOException;
 
    public int containerMoveOut(List<AgvWrkMast> agvWrkMastList) throws IOException;
 
    public boolean insertByIncrease(AgvWrkMast agvWrkMast);
 
    public boolean deleteByWrkNo(int wrkNo);
 
    public int containerArrived(AgvWrkMast agvWrkMast);
 
    public List<AgvWrkMast> selectReadyAgvWrkMast();
 
    public AgvWrkMast selectByContainerCode(String containerCode);
 
}