//------------------------------------------------------------------------------ // // This code was generated by a CodeSmith Template. // // DO NOT MODIFY contents of this file. Changes to this // file will be lost if the code is regenerated. // Author:Yubao Li // //------------------------------------------------------------------------------ using System; namespace OpenAuth.Domain { /// /// /// public partial class User :Entity { public User() { this.Account= string.Empty; this.Password= string.Empty; this.Name= string.Empty; this.Sex= 0; this.Status= 0; this.Type= 0; this.BizCode= string.Empty; this.CreateTime= DateTime.Now; } /// /// /// public string Account { get; set; } /// /// /// public string Password { get; set; } /// /// /// public string Name { get; set; } /// /// /// public int Sex { get; set; } /// /// /// public int Status { get; set; } /// /// /// public int Type { get; set; } /// /// /// public string BizCode { get; set; } /// /// /// public System.DateTime CreateTime { get; set; } /// /// /// public System.Guid? CrateId { get; set; } } }