75 lines
1.9 KiB
C#
75 lines
1.9 KiB
C#
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; }
|
|
}
|
|
} |