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.

INodeMethod.cs 712 B

4 years ago
123456789101112131415161718192021222324
  1. 
  2. namespace Learun.Application.WorkFlow
  3. {
  4. /// <summary>
  5. /// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园
  6. /// Copyright (c) 2013-2018 北京泉江科技有限公司
  7. /// 创建人:陈彬彬
  8. /// 日 期:2017.04.17
  9. /// 描 述:工作流引擎节点触发接口
  10. /// </summary>
  11. public interface INodeMethod
  12. {
  13. /// <summary>
  14. /// 节点审核通过执行方法
  15. /// </summary>
  16. /// <param name="processId"></param>
  17. void Sucess(string processId);
  18. /// <summary>
  19. /// 节点审核失败执行方法
  20. /// </summary>
  21. /// <param name="processId"></param>
  22. void Fail(string processId);
  23. }
  24. }