初始化
This commit is contained in:
45
Face.Domain/Entities/UserInfo.cs
Normal file
45
Face.Domain/Entities/UserInfo.cs
Normal file
@@ -0,0 +1,45 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// 此代码已从模板生成。
|
||||
//
|
||||
// 手动更改此文件可能导致应用程序出现意外的行为。
|
||||
// 如果重新生成代码,将覆盖对此文件的手动更改。
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
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<UserAuthoes>();
|
||||
}
|
||||
|
||||
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<int> Age { get; set; }
|
||||
public Nullable<int> IsValid { get; set; }
|
||||
public string Desc { get; set; }
|
||||
public Nullable<System.DateTime> CreateTime { get; set; }
|
||||
public string CreatedBy { get; set; }
|
||||
public Nullable<int> HotelID { get; set; }
|
||||
public Nullable<int> HotelGroupID { get; set; }
|
||||
public int IsImport { get; set; }
|
||||
public Nullable<int> Company { get; set; }
|
||||
public Nullable<int> OldId { get; set; }
|
||||
public Nullable<System.DateTime> EndTime { get; set; }
|
||||
public int Autho { get; set; }
|
||||
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
||||
public virtual ICollection<UserAuthoes> UserAuthoes { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user