using SqlSugar;
using System;
namespace Application.Domain.Entity
{
[Tenant("Kg.SeaTime.Game")]
public class unit_user
{
///
/// userId
///
[SugarColumn(IsPrimaryKey = true, Length = 50)]
public string userId { get; set; }
///
/// 账号ID
///
[SugarColumn(Length = 50, IsNullable = true)]
public string? accId { get; set; }
///
/// 区服
///
[SugarColumn(IsNullable = true)]
public int? areaId { get; set; }
///
/// userNo
///
[SugarColumn(Length = 12, IsNullable = false)]
public string userNo { get; set; }
///
/// 名称
///
[SugarColumn(IsNullable = true)]
public string? nick { get; set; }
///
/// 头像
///
[SugarColumn(Length = 255, IsNullable = true)]
public string? headImg { get; set; }
///
/// 性别
///
[SugarColumn(Length = 50, IsNullable = true)]
public string? sex { get; set; }
///
/// 简介
///
[SugarColumn(Length = 50, IsNullable = true)]
public string? sign { get; set; }
///
/// 状态
///
[SugarColumn(IsNullable = true)]
public int? status { get; set; }
///
/// 注册状态
///
[SugarColumn(IsNullable = true)]
public int? regOk { get; set; }
///
/// token
///
[SugarColumn(Length = 50, IsNullable = true)]
public string? token { get; set; }
///
/// 是否系统账号
///
[SugarColumn(IsNullable = true)]
public int? isSystem { get; set; }
///
/// 创建时间
///
[SugarColumn(IsNullable = true)]
public DateTime? addTime { get; set; }
}
}