33 lines
779 B
C#
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; }
|
|
}
|
|
} |