luxiaotao1123
2024-04-08 9d0acfb65c80c4948c305ca01338f894b87346a0
zy-asrs-wcs/src/main/java/com/zy/asrs/wcs/core/mapper/TaskMapper.java
@@ -3,10 +3,35 @@
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);
}