using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Model { public class UserItem { /// /// 用户ID /// public string UserId { get; set; } /// /// 账号 /// public string Account { get; set; } /// /// 用户编号 /// public string UserCode { get; set; } /// /// 密码 /// public string Password { get; set; } /// /// 用户名称 /// public string UserName { get; set; } /// /// 角色ID /// public string RoleId { get; set; } /// /// 角色名称 /// public string RoleName { get; set; } /// /// 单位ID /// public string UnitId { get; set; } /// /// 单位名称 /// public string UnitName { get; set; } /// /// 单位代号 /// public string UnitCode { get; set; } /// /// 部门ID /// public string DepartId { get; set; } /// /// 部门名称 /// public string DepartName { get; set; } /// /// 当前项目ID /// public string LoginProjectId { get; set; } /// /// 当前项目名称 /// public string LoginProjectName { get; set; } /// /// 岗位ID /// public string WorkPostId { get; set; } /// /// 岗位名称 /// public string WorkPostName { get; set; } /// /// 身份证 /// public string IdentityCard { get; set; } /// /// 邮箱 /// public string Email { get; set; } /// /// 电话 /// public string Telephone { get; set; } /// /// 是否在岗 /// public string IsPost { get; set; } /// /// 是否本部 /// public bool? IsOffice { get; set; } /// /// 签名 /// public string SignatureUrl { get; set; } /// /// 用户类型(1用户;2临时用户;3现场人员) /// public string UserType { get; set; } } }