You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

61 lines
1.7 KiB
C#

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