FlowNextActionView.cs 638 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace YLShipBuildLandMap.Entity.ViewModel.SystemSetting.Workflow
  5. {
  6. public class FlowNextActionView
  7. {
  8. public string actionid { get; set; }
  9. public string aname { get; set; }
  10. public string pname { get; set; }
  11. public int? flowtp { get; set; }
  12. public int? sort { get; set; }
  13. public string afuns { get; set; }
  14. public string limitfuns { get; set; }
  15. public string flowclname { get; set; }
  16. public int? userchosemode { get; set; }
  17. public string pusertype { get; set; }
  18. }
  19. }