FlowStepView.cs 831 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace YLShipBuildLandMap.Entity.ViewModel.SystemSetting.Workflow
  5. {
  6. public class FlowStepView
  7. {
  8. public string processid{ get; set; }
  9. public string flowid{ get; set; }
  10. public string comment{ get; set; }
  11. public string donetime{ get; set; }
  12. public string workby{ get; set; }
  13. public string workname{ get; set; }
  14. public string createby{ get; set; }
  15. public string createname{ get; set; }
  16. public string pendingby{ get; set; }
  17. public string pendingname{ get; set; }
  18. public int? num{ get; set; }
  19. public string pname{ get; set; }
  20. public string createtime{ get; set; }
  21. public string anote{ get; set; }
  22. public int? pid { get; set; }
  23. }
  24. }