FlowInfoView.cs 594 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace YLShipBuildLandMap.Entity.ViewModel.SystemSetting.Workflow
  5. {
  6. public class FlowInfoView
  7. {
  8. public string pname { get; set; }
  9. public int? num { get; set; }
  10. public int? pid { get; set; }
  11. public string url { get; set; }
  12. public int? flowtp { get; set; }
  13. public string auditnote { get; set; }
  14. public List<FlowNextActionView> nextactions;
  15. public FlowInfoView()
  16. {
  17. nextactions = new List<FlowNextActionView>();
  18. }
  19. }
  20. }