This commit is contained in:
Putoo
2026-05-18 18:12:21 +08:00
parent 571877970b
commit 2037d1e577
20 changed files with 555 additions and 77 deletions

View File

@@ -10,4 +10,8 @@
<ProjectReference Include="..\Application.Service.Pub\Application.Service.Pub.csproj" />
</ItemGroup>
<ItemGroup>
<Folder Include="game\" />
</ItemGroup>
</Project>

View File

@@ -0,0 +1,93 @@
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; }
/// <summary>
/// 最后更新时间
/// </summary>
[SugarColumn(IsNullable = true)]
public DateTime? upTime { get; set; }
}
}