package io.dataease.ext; import io.dataease.ext.query.GridExample; import io.dataease.dto.dataset.DataSetTaskDTO; import io.dataease.dto.dataset.DataSetTaskLogDTO; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import java.util.List; /** * @Author gin * @Date 2021/3/9 3:26 下午 */ @Mapper public interface ExtDataSetTaskMapper { List listTaskLog(GridExample example); List listUserTaskLog(GridExample example); List taskList(GridExample example); List userTaskList(GridExample example); List taskWithTriggers(GridExample example); List findByPanelId(@Param("panelId") String panelId); }