TsysUserCreateViewModel.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  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. /// <summary>
  9. /// 创建
  10. /// </summary>
  11. public class TsysUserCreateViewModel:BaseModel
  12. {
  13. //public Guid C_UserID { get; set; }
  14. public string C_LicenseCode { get; set; }
  15. public string C_Post { get; set; }
  16. public string C_UserName { get; set; }
  17. //public string C_WechatID { get; set; }
  18. public string C_ProgramID { get; set; }
  19. //public string C_Password { get; set; }
  20. public string C_Name { get; set; }
  21. public int I_Render { get; set; }
  22. public string C_IDNum { get; set; }
  23. public Guid? C_OrgCode { get; set; }
  24. public string C_ImagePath { get; set; }
  25. public DateTime? D_Birthday { get; set; }
  26. public string C_Address { get; set; }
  27. public int? I_Sort { get; set; }
  28. public string C_Mobile { get; set; }
  29. public string C_Phone { get; set; }
  30. public string C_Email { get; set; }
  31. public string C_Remark { get; set; }
  32. public IEnumerable<Guid> RoleCodeList { get; set; }
  33. }
  34. }