//------------------------------------------------------------------------------
//
// 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.Domain
{
///
///
///
public partial class User
{
public User()
{
this.Id= 0;
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;
this.CreateId= 0;
}
///
///
///
public int Id { get; set; }
///
///
///
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 int CreateId { get; set; }
}
}