//------------------------------------------------------------------------------ // // 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; using System.Collections.Generic; using System.Text; namespace OpenAuth.Repository.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.BizCode= string.Empty; this.CreateTime= DateTime.Now; this.CrateId= string.Empty; this.TypeName= string.Empty; this.TypeId= string.Empty; } /// /// 用户登录帐号 /// 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 string BizCode { get; set; } /// /// 经办时间 /// public System.DateTime CreateTime { get; set; } /// /// 创建人 /// public string CrateId { get; set; } /// /// 分类名称 /// public string TypeName { get; set; } /// /// 分类ID /// public string TypeId { get; set; } } }