using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
namespace OpenAuth.Domain
{
///
/// 用户
///
public partial class User
{
///
/// 资源表ID
///
///
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; }
///
/// 创建人ID
///
///
public int CreateId { get; set; }
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;
}
}
}