UserView.cs 865 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace OrderSystem.Entity.ViewModel.SystemSetting
  6. {
  7. public class UserView
  8. {
  9. public System.Guid? UserID { get; set; }
  10. public System.Guid? DepartmentID { get; set; }
  11. public string DepartmentName { get; set; }
  12. public string LoginID { get; set; }
  13. public string Name { get; set; }
  14. public int? Sex { get; set; }
  15. public string SexName { get; set; }
  16. public Guid? EmployeeId { get; set; }
  17. public int? RecordStatus { get; set; }
  18. public Guid RoleID { get; set; }
  19. public string CmWorkLinkAccountDomain { get; set; }
  20. public string CmWorkLinkAccountPsid { get; set; }
  21. public string CmWorkLinkAccountPstel { get; set; }
  22. public string FirstCode { get; set; }
  23. }
  24. }