//------------------------------------------------------------------------------ // // 此代码已从模板生成。 // // 手动更改此文件可能导致应用程序出现意外的行为。 // 如果重新生成代码,将覆盖对此文件的手动更改。 // //------------------------------------------------------------------------------ namespace Face.Domain.Entities { using System; using System.Collections.Generic; public partial class UserInfo { [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")] public UserInfo() { this.UserAuthoes = new HashSet(); } public int Id { get; set; } public string Uid { get; set; } public string Pwd { get; set; } public string PwdSee { get; set; } public string HeadImg { get; set; } public int Sex { get; set; } public Nullable Age { get; set; } public Nullable IsValid { get; set; } public string Desc { get; set; } public Nullable CreateTime { get; set; } public string CreatedBy { get; set; } public Nullable HotelID { get; set; } public Nullable HotelGroupID { get; set; } public int IsImport { get; set; } public Nullable Company { get; set; } public Nullable OldId { get; set; } public Nullable EndTime { get; set; } public int Autho { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public virtual ICollection UserAuthoes { get; set; } } }