You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
-
- using Learun.Util;
- using System.Collections.Generic;
- namespace Learun.Application.WorkFlow
- {
- /// <summary>
- /// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园
- /// Copyright (c) 2013-2018 北京泉江科技有限公司
- /// 创建人:陈彬彬
- /// 日 期:2017.04.17
- /// 描 述:工作流引擎接口
- /// </summary>
- public interface WfEngineIBLL
- {
- /// <summary>
- /// 流程发起初始化接口
- /// </summary>
- /// <param name="parameter">流程参数</param>
- /// <returns></returns>
- WfResult<WfContent> Bootstraper(WfParameter parameter);
- /// <summary>
- /// 获取某个任务节点的信息
- /// </summary>
- /// <param name="parameter">流程参数</param>
- /// <returns></returns>
- WfResult<WfContent> GetTaskInfo(WfParameter parameter);
- /// <summary>
- /// 获取流程实例信息
- /// </summary>
- /// <param name="parameter">流程参数</param>
- /// <returns></returns>
- WfResult<WfContent> GetProcessInfo(WfParameter parameter);
- /// <summary>
- /// 获取流程实例信息(流程监控)
- /// </summary>
- /// <param name="parameter">流程参数</param>
- /// <returns></returns>
- WfResult<WfContent> GetProcessInfoByMonitor(WfParameter parameter);
- /// <summary>
- /// 创建流程实例
- /// </summary>
- /// <param name="parameter">流程参数</param>
- /// <returns></returns>
- WfResult Create(WfParameter parameter);
- /// <summary>
- /// 审核流程节点
- /// </summary>
- /// <param name="parameter">流程参数</param>
- /// <returns></returns>
- WfResult Audit(WfParameter parameter);
-
- /// <summary>
- /// 获取下一个节点审核者信息
- /// </summary>
- /// <param name="parameter"></param>
- /// <returns></returns>
- WfResult<List<object>> GetAuditer(WfParameter parameter);
- }
- }
|