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.
 
 
 
 
 
 

25 lines
712 B

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