#
Junjie
2024-04-08 79603e53c78e535dba4bfbc69b8c3b5c184012c5
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
34
35
package com.zy.asrs.wcs.core.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.zy.asrs.wcs.core.entity.Task;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
public interface TaskService extends IService<Task> {
 
    Boolean judgeInbound(Task task);
 
    Boolean hasBusyOutboundByShuttle(Integer shuttleNo);
 
    List<Task> selectByAnalyzeSts();
 
    List<Task> selectByExecuteSts();
 
    List<Task> selectManualByAnalyzeSts();
 
    List<Task> selectManualByExecuteSts();
 
    List<Task> selectWaitAnalyzeInBoundTask();
 
    List<Task> selectPakOut();
 
    List<Task> hasChargeInLoc(String locNo);
 
    Task selectMoveWorking(Integer shuttleNo);
 
    List<Task> selectWorkingByShuttle(Integer shuttleNo);
 
    Task selectChargeWorking(Integer shuttleNo);
 
}