TsysUserViewModel.cs 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. using Ropin.Inspection.Model.Entities;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Ropin.Inspection.Model
  8. {
  9. public class TsysUserViewModel : BaseViewModel
  10. {
  11. public Guid C_UserID { get; set; }
  12. public string C_LicenseCode { get; set; }
  13. public string C_Post { get; set; }
  14. public string C_UserName { get; set; }
  15. public string C_WechatID { get; set; }
  16. public string C_WxopenID { get; set; }
  17. public string C_ProgramID { get; set; }
  18. public string C_Password { get; set; }
  19. public string C_Name { get; set; }
  20. public int I_Render { get; set; }
  21. public string C_IDNum { get; set; }
  22. public Guid? C_OrgCode { get; set; }
  23. public string C_ImagePath { get; set; }
  24. public DateTime? D_Birthday { get; set; }
  25. public string C_Address { get; set; }
  26. public int? I_Sort { get; set; }
  27. public string C_Mobile { get; set; }
  28. public string C_Phone { get; set; }
  29. public string C_Email { get; set; }
  30. public string C_Remark { get; set; }
  31. //public string C_UserID { get; set; }
  32. //public string C_Password { get; set; }
  33. //public string C_WechatID { get; set; }
  34. //public string C_Name { get; set; }
  35. //public string C_Mobile { get; set; }
  36. //public string C_Email { get; set; }
  37. //public string C_Remark { get; set; }
  38. //public string C_IDNum { get; set; }
  39. //public string C_ImagePath { get; set; }
  40. //public DateTime D_Birthday { get; set; }
  41. //public string C_Address { get; set; }
  42. //public TSYS_UserRole UserRole { get; set; }
  43. public Guid UserRole { get; set; }
  44. //public Guid G_OrganizeCode { get; set; }
  45. }
  46. }