ToDoView.cs 722 B

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace YLShipBuildLandMap.Entity.ViewModel.SystemSetting.Workflow
  5. {
  6. public class ToDoView
  7. {
  8. public string toDoID{ get; set; }
  9. public string toDoTitle{ get; set; }
  10. public string toDoUrl{ get; set; }
  11. public string toDoType{ get; set; }
  12. public string toDoAttrVal{ get; set; }
  13. public string createTimeString{ get; set; }
  14. public string userName{ get; set; }
  15. public string menuName{ get; set; }
  16. public string createUserName{ get; set; }
  17. public string pid { get; set; }
  18. public string fid { get; set; }
  19. public int? status { get; set; }
  20. }
  21. }