using SqlSugar; using System; namespace Application.Domain.Entity { [Tenant("Kg.SeaTime.Resource")] public class game_exchange { /// /// exId /// [SugarColumn(IsPrimaryKey = true)] public int exId { get; set; } /// /// areaId /// [SugarColumn(Length = 50, IsNullable = true)] public string? areaId { get; set; } /// /// npcId /// [SugarColumn(IsNullable = true)] public int? npcId { get; set; } /// /// name /// [SugarColumn(Length = 50, IsNullable = true)] public string? name { get; set; } /// /// tips /// [SugarColumn(IsNullable = true)] public string? tips { get; set; } /// /// exType /// [SugarColumn(Length = 50, IsNullable = true)] public string? exType { get; set; } /// /// count /// [SugarColumn(IsNullable = true)] public int? count { get; set; } /// /// needData /// [SugarColumn(IsNullable = true,IsJson = true)] public List needData { get; set; } /// /// getData /// [SugarColumn(IsNullable = true,IsJson = true)] public List getData { get; set; } /// /// startTime /// [SugarColumn(IsNullable = true)] public DateTime? startTime { get; set; } /// /// endTime /// [SugarColumn(IsNullable = true)] public DateTime? endTime { get; set; } } }