| | |
| | | import com.zy.asrs.wcs.core.entity.Task; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | import java.util.List; |
| | | |
| | | @Mapper |
| | | @Repository |
| | | public interface TaskMapper extends BaseMapper<Task> { |
| | | |
| | | List<Task> selectOutboundByShuttleNo(@Param("shuttleNo") 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); |
| | | |
| | | } |