1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace OrderSystem.Entity.ViewModel.SystemSetting
- {
- public class UserView
- {
- public System.Guid? UserID { get; set; }
- public System.Guid? DepartmentID { get; set; }
- public string DepartmentName { get; set; }
- public string LoginID { get; set; }
- public string Name { get; set; }
- public int? Sex { get; set; }
- public string SexName { get; set; }
- public Guid? EmployeeId { get; set; }
- public int? RecordStatus { get; set; }
- public Guid RoleID { get; set; }
- public string CmWorkLinkAccountDomain { get; set; }
- public string CmWorkLinkAccountPsid { get; set; }
- public string CmWorkLinkAccountPstel { get; set; }
- public string FirstCode { get; set; }
- }
- }
|