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 { Boolean judgeInbound(Task task); Boolean hasBusyOutboundByShuttle(Integer shuttleNo); List selectByAnalyzeSts(); List selectByExecuteSts(); List selectWaitAnalyzeInBoundTask(); List selectPakOut(); List hasChargeInLoc(String locNo); Task selectMoveWorking(Integer shuttleNo); List selectWorkingByShuttle(Integer shuttleNo); Task selectChargeWorking(Integer shuttleNo); }