zhangherong
2025-04-25 06b549813b755203748ee3c2530868a94e35ccf6
1
2
3
4
5
6
7
8
9
10
11
package org.jeecg.modules.flowable.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import org.jeecg.modules.flowable.domain.vo.WorkTaskData;
 
import java.util.List;
 
public interface IWorkTaskService extends IService<WorkTaskData> {
    List<WorkTaskData> queryAllworkTask();
 
}