FlowCommitArgView.cs 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace YLShipBuildLandMap.Entity.ViewModel.SystemSetting.Workflow
  5. {
  6. public class FlowCommitArgView
  7. {
  8. public string flowID{ get; set; }
  9. public int? num { get; set; }
  10. public int? pid{ get; set; }
  11. public string processID{ get; set; }
  12. public string pendingUsers{ get; set; }
  13. public string pendingUserType{ get; set; }
  14. public string pDescription{ get; set; }
  15. public string aPendingUser{ get; set; }
  16. public string aPendingUserType{ get; set; }
  17. public string aDescription{ get; set; }
  18. public string aActionFunc{ get; set; }
  19. public string pName{ get; set; }
  20. public int? aPid{ get; set; }
  21. public string aPName{ get; set; }
  22. public List<string> nextUsers{ get; set; }
  23. public bool? isGoNextStep{ get; set; }
  24. public bool? isGoEndingStep{ get; set; }
  25. public bool? isGoStartStep{ get; set; }
  26. public string actionId { get; set; }
  27. public string workby { get; set; }
  28. }
  29. }