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.
 
 
 
 
 
 

60 lines
2.0 KiB

  1. using Learun.Util;
  2. using System.Collections.Generic;
  3. namespace Learun.Application.WorkFlow
  4. {
  5. /// <summary>
  6. /// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园
  7. /// Copyright (c) 2013-2018 北京泉江科技有限公司
  8. /// 创建人:陈彬彬
  9. /// 日 期:2017.04.17
  10. /// 描 述:工作流引擎接口
  11. /// </summary>
  12. public interface WfEngineIBLL
  13. {
  14. /// <summary>
  15. /// 流程发起初始化接口
  16. /// </summary>
  17. /// <param name="parameter">流程参数</param>
  18. /// <returns></returns>
  19. WfResult<WfContent> Bootstraper(WfParameter parameter);
  20. /// <summary>
  21. /// 获取某个任务节点的信息
  22. /// </summary>
  23. /// <param name="parameter">流程参数</param>
  24. /// <returns></returns>
  25. WfResult<WfContent> GetTaskInfo(WfParameter parameter);
  26. /// <summary>
  27. /// 获取流程实例信息
  28. /// </summary>
  29. /// <param name="parameter">流程参数</param>
  30. /// <returns></returns>
  31. WfResult<WfContent> GetProcessInfo(WfParameter parameter);
  32. /// <summary>
  33. /// 获取流程实例信息(流程监控)
  34. /// </summary>
  35. /// <param name="parameter">流程参数</param>
  36. /// <returns></returns>
  37. WfResult<WfContent> GetProcessInfoByMonitor(WfParameter parameter);
  38. /// <summary>
  39. /// 创建流程实例
  40. /// </summary>
  41. /// <param name="parameter">流程参数</param>
  42. /// <returns></returns>
  43. WfResult Create(WfParameter parameter);
  44. /// <summary>
  45. /// 审核流程节点
  46. /// </summary>
  47. /// <param name="parameter">流程参数</param>
  48. /// <returns></returns>
  49. WfResult Audit(WfParameter parameter);
  50. /// <summary>
  51. /// 获取下一个节点审核者信息
  52. /// </summary>
  53. /// <param name="parameter"></param>
  54. /// <returns></returns>
  55. WfResult<List<object>> GetAuditer(WfParameter parameter);
  56. }
  57. }