#
Junjie
2024-04-07 08c96e4b797573fd64b42a52a2f9b9805d59d3e3
zy-asrs-wcs/src/main/java/com/zy/asrs/wcs/core/service/TaskService.java
@@ -2,7 +2,28 @@
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> selectWaitAnalyzeInBoundTask();
    List<Task> selectPakOut();
    List<Task> hasChargeInLoc(String locNo);
    Task selectMoveWorking(Integer shuttleNo);
    Task selectChargeWorking(Integer shuttleNo);
}