TsysUserUpdateViewModel.cs 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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
  7. {
  8. public class TsysUserUpdateViewModel
  9. {
  10. public string C_Post { get; set; }
  11. public string C_UserName { get; set; }
  12. public string C_WechatID { get; set; }
  13. public string C_WxopenID { get; set; }
  14. public string C_ProgramID { get; set; }
  15. //public string C_Password { get; set; }
  16. public string C_Name { get; set; }
  17. public int I_Render { get; set; }
  18. public string C_IDNum { get; set; }
  19. public Guid? C_OrgCode { get; set; }
  20. public string C_ImagePath { get; set; }
  21. public DateTime? D_Birthday { get; set; }
  22. public string C_Address { get; set; }
  23. public int? I_Sort { get; set; }
  24. public string C_Mobile { get; set; }
  25. public string C_Phone { get; set; }
  26. public string C_Email { get; set; }
  27. public string C_Remark { get; set; }
  28. public string C_Status { get; set; }
  29. //public string C_Password { get; set; }
  30. //public string C_WechatID { get; set; }
  31. //public string C_Name { get; set; }
  32. //public string C_Mobile { get; set; }
  33. //public string C_Email { get; set; }
  34. //public string C_Remark { get; set; }
  35. //public string C_IDNum { get; set; }
  36. //public string C_ImagePath { get; set; }
  37. //public DateTime D_Birthday { get; set; }
  38. //public string C_Address { get; set; }
  39. //public Guid RoleId { get; set; }
  40. //public Guid G_OrganizeCode { get; set; }
  41. public IEnumerable<Guid> RoleCodeList { get; set; }
  42. }
  43. }