Lius
2025-06-24 aaaeee46bf6d408e68cfddebea146bf382977ac9
1
2
3
4
5
6
7
8
9
10
package org.jeecg.modules.flowable.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.jeecg.modules.flowable.domain.vo.WorkTaskData;
 
import java.util.List;
 
public interface IWorkTaskMapper extends BaseMapper<WorkTaskData> {
    List<WorkTaskData> queryAllworkTask();
}