1212
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user