This commit is contained in:
Putoo
2026-05-15 17:08:04 +08:00
parent 52ad7e79ec
commit 78759387f7
13 changed files with 511 additions and 632 deletions

View File

@@ -0,0 +1,75 @@
using SqlSugar;
using System;
namespace Application.Domain.Entity
{
[Tenant("Kg.SeaTime.Game")]
public class game_account
{
/// <summary>
/// accId
/// </summary>
[SugarColumn(IsPrimaryKey = true, Length = 50)]
public string accId { get; set; }
/// <summary>
/// userName
/// </summary>
[SugarColumn(Length = 20, IsNullable = true)]
public string? userName { get; set; }
/// <summary>
/// nick
/// </summary>
[SugarColumn(Length = 30, IsNullable = true)]
public string? nick { get; set; }
/// <summary>
/// pwd
/// </summary>
[SugarColumn(Length = 255, IsNullable = true)]
public string? pwd { get; set; }
/// <summary>
/// npwd
/// </summary>
[SugarColumn(Length = 255, IsNullable = true)]
public string? npwd { get; set; }
/// <summary>
/// status
/// </summary>
[SugarColumn(IsNullable = true)]
public int? status { get; set; }
/// <summary>
/// remCode
/// </summary>
[SugarColumn(Length = 255, IsNullable = true)]
public string? remCode { get; set; }
/// <summary>
/// remAccId
/// </summary>
[SugarColumn(Length = 50, IsNullable = true)]
public string? remAccId { get; set; }
/// <summary>
/// token
/// </summary>
[SugarColumn(Length = 50, IsNullable = true)]
public string? token { get; set; }
/// <summary>
/// addTime
/// </summary>
[SugarColumn(IsNullable = true)]
public DateTime? addTime { get; set; }
/// <summary>
/// openId
/// </summary>
[SugarColumn(Length = 50, IsNullable = true)]
public string? openId { get; set; }
}
}