TsysUserDetailViewModel.cs 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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
  7. {
  8. public class TsysUserDetailViewModel : BaseViewModel
  9. {
  10. public Guid C_UserID { get; set; }
  11. public string C_LicenseCode { get; set; }
  12. public string C_Post { get; set; }
  13. public string C_UserName { get; set; }
  14. public string C_WechatID { get; set; }
  15. public string C_WxopenID { get; set; }
  16. public string C_ProgramID { get; set; }
  17. //public string C_Password { get; set; }
  18. public string C_Name { get; set; }
  19. public int I_Render { get; set; }
  20. public string C_IDNum { get; set; }
  21. public Guid C_OrgCode { get; set; }
  22. public string C_ImagePath { get; set; }
  23. public DateTime? D_Birthday { get; set; }
  24. public string C_Address { get; set; }
  25. public int? I_Sort { get; set; }
  26. public string C_Mobile { get; set; }
  27. public string C_Phone { get; set; }
  28. public string C_Email { get; set; }
  29. public string C_Remark { get; set; }
  30. //public Guid C_UserID { get; set; }
  31. //public string C_WechatID { get; set; }
  32. //public string C_Name { get; set; }
  33. //public string C_Mobile { get; set; }
  34. //public string C_Email { get; set; }
  35. //public string C_Remark { get; set; }
  36. //public string C_IDNum { get; set; }
  37. //public string C_ImagePath { get; set; }
  38. //public DateTime D_Birthday { get; set; }
  39. //public string C_Address { get; set; }
  40. //public Guid G_OrganizeCode { get; set; }
  41. //权限编号
  42. //public Guid C_PrivilegeCode { get; set; }
  43. public string RoleIds { get; set; }
  44. public string RoleNames { get; set; }
  45. //public IEnumerable<LicenseTypePriv> LicenseTypePrivS { get; set; }
  46. public IEnumerable<RoleTypePrivTree> RoleTypePrivS { get; set; }
  47. public string LicenseTypeCode { get; set; }
  48. public string LicenseTypeName { get; set; }
  49. public string OrgTypeCode { get; set; }
  50. public string OrgTypeName { get; set; }
  51. //public string LicenseCode { get; set; }
  52. //public string LicenseName { get; set; }
  53. public IEnumerable<Model.ViewModel.SYS.TSYSRoleHandModel> RoleHandList { get; set; }
  54. }
  55. public class LicenseTypePriv
  56. {
  57. public string C_Code { get; set; }
  58. public string C_ParentCode { get; set; }
  59. public string C_Module { get; set; }
  60. public string C_Type { get; set; }
  61. public string C_Name { get; set; }
  62. public int? I_Sort { get; set; }
  63. public string C_ImageUrl { get; set; }
  64. public string C_PageUrl { get; set; }
  65. public string C_Remark { get; set; }
  66. }
  67. public class RoleTypePriv
  68. {
  69. public string C_Code { get; set; }
  70. public string C_ParentCode { get; set; }
  71. public string C_Module { get; set; }
  72. public string C_Type { get; set; }
  73. public string C_Name { get; set; }
  74. public int? I_Sort { get; set; }
  75. public string C_ImageUrl { get; set; }
  76. public string C_PageUrl { get; set; }
  77. public string C_Remark { get; set; }
  78. //public string LicenseTypeCode { get; set; }
  79. //public string LicenseTypeName { get; set; }
  80. }
  81. public class RoleTypePrivTree
  82. {
  83. public string C_Code { get; set; }
  84. public string C_ParentCode { get; set; }
  85. public string C_Module { get; set; }
  86. public string C_Type { get; set; }
  87. public string C_Name { get; set; }
  88. public int? I_Sort { get; set; }
  89. public string C_ImageUrl { get; set; }
  90. public string C_PageUrl { get; set; }
  91. public string C_Remark { get; set; }
  92. public List<RoleTypePrivTree> Children { get; set; }
  93. public bool Open { get; set; } = true;
  94. }
  95. }