| | |
| | | import com.zy.asrs.wcs.core.model.enums.TaskStsType; |
| | | import com.zy.asrs.wcs.core.service.TaskService; |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import com.zy.asrs.wcs.rcs.service.MotionService; |
| | | import com.zy.asrs.wcs.core.service.MotionService; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | |
| | | public List<Task> selectByExecuteSts() { |
| | | return this.baseMapper.selectByExecuteSts(); |
| | | } |
| | | |
| | | @Override |
| | | public List<Task> selectWaitAnalyzeInBoundTask() { |
| | | return this.baseMapper.selectWaitAnalyzeInBoundTask(); |
| | | } |
| | | |
| | | @Override |
| | | public List<Task> selectPakOut() { |
| | | return this.baseMapper.selectPakOut(); |
| | | } |
| | | |
| | | @Override |
| | | public List<Task> hasChargeInLoc(String locNo) { |
| | | return this.baseMapper.hasChargeInLoc(locNo); |
| | | } |
| | | |
| | | @Override |
| | | public Task selectMoveWorking(Integer shuttleNo) { |
| | | return this.baseMapper.selectMoveWorking(shuttleNo); |
| | | } |
| | | |
| | | @Override |
| | | public Task selectChargeWorking(Integer shuttleNo) { |
| | | return this.baseMapper.selectChargeWorking(shuttleNo); |
| | | } |
| | | } |