package com.zcloud.service.act; import java.util.List; import com.zcloud.entity.Page; import com.zcloud.entity.PageData; /** * 说明: 正在运行的流程接口 * 作者:luoxiaobao * 官网:www.qdkjchina.com */ public interface RuprocdefService { /**待办任务 or正在运行任务列表 * @param page * @throws Exception */ public List list(Page page)throws Exception; /**流程变量列表 * @param page * @throws Exception */ public List varList(PageData pd)throws Exception; /**历史任务节点列表 * @param page * @throws Exception */ public List hiTaskList(PageData pd)throws Exception; /**已办任务列表列表 * @param page * @throws Exception */ public List hitasklist(Page page)throws Exception; /**激活or挂起任务(指定某个任务) * @param pd * @throws Exception */ public void onoffTask(PageData pd)throws Exception; /**激活or挂起任务(指定某个流程的所有任务) * @param pd * @throws Exception */ public void onoffAllTask(PageData pd)throws Exception; }