using System;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
using OpenAuth.Repository.Core;
using SqlSugar;
namespace OpenAuth.Repository.Domain
{
///
/// 用户基本信息表
///
[SugarTable("sys_user")]
public partial class SysUser
{
[SugarColumn(IsPrimaryKey = true)]
public long Id { get; set; }
///
/// 用户登录帐号
///
[Description("用户登录帐号")]
public string Account { get; set; }
///
/// 密码
///
[Description("密码")]
public string Password { get; set; }
///
/// 用户姓名
///
[Description("用户姓名")]
public string Name { get; set; }
///
/// 性别
///
[Description("性别")]
public int Sex { get; set; }
///
/// 用户状态
///
[Description("用户状态")]
public int Status { get; set; }
///
/// 业务对照码
///
[Description("业务对照码")]
public string BizCode { get; set; }
///
/// 经办时间
///
[Description("经办时间")]
public System.DateTime CreateTime { get; set; }
///
/// 创建人
///
[Description("创建人")]
public long CreateId { get; set; }
[Description("加密密钥")]
public string Secretkey { get; set; }
}
}