package com.ydtech.modules.fnc.dao; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.ydtech.modules.fnc.dto.InsExcelTaskDto; import com.ydtech.modules.fnc.entity.InsExcelTaskEntity; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import java.util.List; @Mapper public interface InsExcelTaskAsyncMapper extends BaseMapper{ Page queryPage(@Param("vo") InsExcelTaskDto insExcelTaskDto,@Param("page") Page page); /** * * @param nowTime * @return 查询任务集合 */ List selectAllList(InsExcelTaskDto insExcelTaskDto); }