Files
Kg.SeaTime/Service/Application.Domain.Entity/resource/game/game_city_map_event.cs
2026-06-04 18:25:31 +08:00

33 lines
779 B
C#

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