TsysPrivViewModel.cs 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Ropin.Inspection.Model.ViewModel.SYS
  7. {
  8. public class TsysPrivViewModel : BaseViewModel
  9. {
  10. public string C_Code { get; set; }
  11. public string C_ParentCode { get; set; }
  12. public string C_Module { get; set; }
  13. public string C_ModuleName { get; set; }
  14. public string C_Type { get; set; }
  15. public string C_TypeName { get; set; }
  16. public string C_Name { get; set; }
  17. public int? I_Sort { get; set; }
  18. public string C_ImageUrl { get; set; }
  19. public string C_PageUrl { get; set; }
  20. public string C_Remark { get; set; }
  21. public string C_Status { get; set; }
  22. }
  23. public class TsysPrivTreeModel
  24. {
  25. public string C_Code { get; set; }
  26. public string C_ParentCode { get; set; }
  27. public string C_Module { get; set; }
  28. public string C_ModuleName { get; set; }
  29. public string C_Type { get; set; }
  30. public string C_TypeName { get; set; }
  31. public string C_Name { get; set; }
  32. public int? I_Sort { get; set; }
  33. public string C_ImageUrl { get; set; }
  34. public string C_PageUrl { get; set; }
  35. public string C_Remark { get; set; }
  36. public string C_Status { get; set; }
  37. public List<TsysPrivTreeModel> Children { get; set; }
  38. public bool Open { get; set; } = true;
  39. }
  40. public class TsysPrivSearch: BaseSearchModel
  41. {
  42. public string C_Name { get; set; }
  43. public string C_ParentCode { get; set; }
  44. public string C_Status { get; set; }
  45. }
  46. }