using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Zxd.Entity.Zxd { [Table("BAS_INNERUSER")] public class BAS_INNERUSER { [Key] public int PKID { get; set; } public string UNAME { get; set; } public int EID { get; set; } public string GENDER { get; set; } public DateTime? BIRTHDAY { get; set; } public string PASSWORD { get; set; } public short ISDISMISS { get; set; } public DateTime? DISMISSTIME { get; set; } public int? DISMISSTYPE { get; set; } public DateTime? ENTRYDATE { get; set; } public DateTime? CTIME { get; set; } public int? CREATEUSER { get; set; } public DateTime? UTIME { get; set; } public int? UPDATEUSER { get; set; } //public DateTime? POSITIVETIME { get; set; } //[StringLength(50)] //public string TRUENAME { get; set; } public short ISHIDE { get; set; } /// /// 分机号 /// [NotMapped] public int? map_FJH { get; set; } } }