namespace iWareSql { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; [Table("SysUser")] public partial class SysUser { [DatabaseGenerated(DatabaseGeneratedOption.None)] public long Id { get; set; } [Required] [StringLength(32)] public string Account { get; set; } [Required] [StringLength(512)] public string Password { get; set; } [Required] [StringLength(32)] public string RealName { get; set; } [StringLength(32)] public string NickName { get; set; } [StringLength(512)] public string Avatar { get; set; } public int Sex { get; set; } public int Age { get; set; } public DateTime? Birthday { get; set; } [StringLength(32)] public string Nation { get; set; } [StringLength(16)] public string Phone { get; set; } public int CardType { get; set; } [StringLength(32)] public string IdCardNum { get; set; } [StringLength(64)] public string Email { get; set; } [StringLength(256)] public string Address { get; set; } public int CultureLevel { get; set; } [StringLength(16)] public string PoliticalOutlook { get; set; } [StringLength(128)] public string College { get; set; } [StringLength(16)] public string OfficePhone { get; set; } [StringLength(32)] public string EmergencyContact { get; set; } [StringLength(16)] public string EmergencyPhone { get; set; } [StringLength(256)] public string EmergencyAddress { get; set; } [StringLength(512)] public string Introduction { get; set; } public int OrderNo { get; set; } public int Status { get; set; } [StringLength(256)] public string Remark { get; set; } public int AccountType { get; set; } public long OrgId { get; set; } public long? ManagerUserId { get; set; } public long PosId { get; set; } [StringLength(32)] public string JobNum { get; set; } [StringLength(32)] public string PosLevel { get; set; } [StringLength(32)] public string PosTitle { get; set; } [StringLength(32)] public string Expertise { get; set; } [StringLength(32)] public string OfficeZone { get; set; } [StringLength(32)] public string Office { get; set; } public DateTime? JoinDate { get; set; } [StringLength(256)] public string LastLoginIp { get; set; } [StringLength(128)] public string LastLoginAddress { get; set; } public DateTime? LastLoginTime { get; set; } [StringLength(128)] public string LastLoginDevice { get; set; } [StringLength(512)] public string Signature { get; set; } public long? TenantId { get; set; } public DateTime? CreateTime { get; set; } public DateTime? UpdateTime { get; set; } public long? CreateUserId { get; set; } [StringLength(64)] public string CreateUserName { get; set; } public long? UpdateUserId { get; set; } [StringLength(64)] public string UpdateUserName { get; set; } public bool IsDelete { get; set; } } }