OpenAuth.Net/OpenAuth.Repository/Domain/User.cs

89 lines
2.6 KiB
C#
Raw Normal View History

2017-10-11 16:19:34 +08:00
//------------------------------------------------------------------------------
// <autogenerated>
// 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
// </autogenerated>
//------------------------------------------------------------------------------
using System;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
using OpenAuth.Repository.Core;
2017-10-11 16:19:34 +08:00
2017-11-29 20:49:14 +08:00
namespace OpenAuth.Repository.Domain
2017-10-11 16:19:34 +08:00
{
/// <summary>
/// 用户基本信息表
/// </summary>
[Table("User")]
public partial class User : StringEntity
2017-10-11 16:19:34 +08:00
{
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.CreateId= string.Empty;
2017-11-29 20:49:14 +08:00
this.TypeName= string.Empty;
this.TypeId= string.Empty;
2017-10-11 16:19:34 +08:00
}
/// <summary>
/// 用户登录帐号
/// </summary>
[Description("用户登录帐号")]
2017-10-11 16:19:34 +08:00
public string Account { get; set; }
/// <summary>
/// 密码
/// </summary>
[Description("密码")]
2017-10-11 16:19:34 +08:00
public string Password { get; set; }
/// <summary>
/// 用户姓名
/// </summary>
[Description("用户姓名")]
2017-10-11 16:19:34 +08:00
public string Name { get; set; }
/// <summary>
/// 性别
/// </summary>
[Description("性别")]
2017-10-11 16:19:34 +08:00
public int Sex { get; set; }
/// <summary>
/// 用户状态
/// </summary>
[Description("用户状态")]
2017-10-11 16:19:34 +08:00
public int Status { get; set; }
/// <summary>
/// 业务对照码
/// </summary>
[Description("业务对照码")]
2017-10-11 16:19:34 +08:00
public string BizCode { get; set; }
/// <summary>
/// 经办时间
/// </summary>
[Description("经办时间")]
2017-10-11 16:19:34 +08:00
public System.DateTime CreateTime { get; set; }
/// <summary>
/// 创建人
/// </summary>
[Description("创建人")]
public string CreateId { get; set; }
2017-11-29 20:49:14 +08:00
/// <summary>
/// 分类名称
/// </summary>
[Description("分类名称")]
2017-11-29 20:49:14 +08:00
public string TypeName { get; set; }
/// <summary>
/// 分类ID
/// </summary>
[Description("分类ID")]
2017-11-29 20:49:14 +08:00
public string TypeId { get; set; }
2017-10-11 16:19:34 +08:00
}
2017-01-12 19:16:37 +08:00
}