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