ProcessOverView.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. using OASystem.Domain.Entities.Groups;
  2. using OASystem.Domain.Enums;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace OASystem.Domain.ViewModels.Groups
  9. {
  10. public class ProcessOverView
  11. {
  12. }
  13. public class ConfProcessOverInfoView
  14. {
  15. public int Id { get; set; }
  16. public int GroupId { get; set; }
  17. public ConfProcessType ProcessType { get; set; }
  18. public string ProcessName { get; set; }
  19. public List<ConfProcessNodeInfoView> Nodes { get; set; }
  20. }
  21. public class ConfProcessNodeInfoView
  22. {
  23. public int Id { get; set; }
  24. public int ProcessId { get; set; }
  25. public int NodeOrder { get; set; }
  26. public string NodeName { get; set; }
  27. public string NodeDescTips { get; set; }
  28. public ProcessStatus OverallStatus { get; set; }
  29. public List<int> Participators { get; set; }
  30. public string StatusText { get; set; }
  31. public string Operator { get; set; }
  32. public string OpeateTime { get; set; }
  33. public string ActualDone { get; set; }
  34. public bool IsEnaFileUpBtn { get; set; }
  35. public bool IsFileUp { get; set; }
  36. }
  37. }