Files
Putoo 784bc66ef6 111
2026-05-20 18:32:54 +08:00

88 lines
2.1 KiB
C#

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