zhangherong
2025-03-20 84ba58b0e2b8d4e0f354a4651b6a1420fe08aa40
1
2
3
4
5
6
7
8
9
10
11
12
package org.jeecg.modules.dncFlow.service;
 
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.baomidou.mybatisplus.extension.service.IService;
import org.jeecg.modules.dncFlow.entity.WorkTaskDataVo;
import org.jeecg.modules.dncFlow.vo.FlowMy;
 
public interface IWorkTaskServiceVo extends IService<WorkTaskDataVo> {
 
    IPage<WorkTaskDataVo> toTaskBySelf(FlowMy flowMy, Page page);
}