| package com.zy.asrs.wms.asrs.mapper;  | 
|   | 
| import com.zy.asrs.wms.asrs.entity.TaskDetlLog;  | 
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;  | 
| import com.zy.asrs.wms.asrs.entity.statistics.InformationTop;  | 
| import org.apache.ibatis.annotations.Mapper;  | 
| import org.springframework.stereotype.Repository;  | 
|   | 
| import java.util.List;  | 
|   | 
| @Mapper  | 
| @Repository  | 
| public interface TaskDetlLogMapper extends BaseMapper<TaskDetlLog> {  | 
|   | 
|     List<Long> getTaskIdsByDetlId(Long detlId);  | 
|   | 
|     List<InformationTop> getInformationTopIn(Integer top);  | 
|   | 
|     List<InformationTop> getInformationTopOut(Integer top);  | 
|   | 
| }  |