using SqlSugar; using System; namespace Application.Domain.Entity { [Tenant("Kg.SeaTime.Resource")] public class game_city_map_event { /// /// evId /// [SugarColumn(IsPrimaryKey = true)] public int evId { get; set; } /// /// evType /// [SugarColumn(Length = 255, IsNullable = true)] public string? evType { get; set; } /// /// eventData /// [SugarColumn(IsNullable = true)] public string? eventData { get; set; } /// /// offsetData /// [SugarColumn(IsNullable = true)] public string? offsetData { get; set; } } }