qa-prevention-gwj/src/main/java/com/zcloud/service/act/RuprocdefService.java

52 lines
1.1 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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<PageData> list(Page page)throws Exception;
/**流程变量列表
* @param page
* @throws Exception
*/
public List<PageData> varList(PageData pd)throws Exception;
/**历史任务节点列表
* @param page
* @throws Exception
*/
public List<PageData> hiTaskList(PageData pd)throws Exception;
/**已办任务列表列表
* @param page
* @throws Exception
*/
public List<PageData> 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;
}