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.
 
 
 
 
 
 

41 lines
1.2 KiB

  1. using System.Collections.Generic;
  2. namespace Learun.Application.WorkFlow
  3. {
  4. /// <summary>
  5. /// 版 本 Learun-ADMS V7.0.3 力软敏捷开发框架
  6. /// Copyright (c) 2013-2018 上海力软信息技术有限公司
  7. /// 创建人:力软-框架开发组
  8. /// 日 期:2018.12.11
  9. /// 描 述:工作流进程详情数据模型
  10. /// </summary>
  11. public class NWFProcessDetailsModel
  12. {
  13. /// <summary>
  14. /// 当前节点ID
  15. /// </summary>
  16. public string CurrentNodeId { get; set; }
  17. /// <summary>
  18. /// 当前正在执行的任务节点ID数据
  19. /// </summary>
  20. public List<string> CurrentNodeIds { get; set; }
  21. /// <summary>
  22. /// 流程模板信息
  23. /// </summary>
  24. public string Scheme { get; set; }
  25. /// <summary>
  26. /// 任务执行记录
  27. /// </summary>
  28. public List<NWFTaskLogEntity> TaskLogList { get; set; }
  29. /// <summary>
  30. /// 子流程进程主键
  31. /// </summary>
  32. public string childProcessId { get; set; }
  33. /// <summary>
  34. /// 父流程进程主键
  35. /// </summary>
  36. public string parentProcessId { get; set; }
  37. }
  38. }