1212
This commit is contained in:
@@ -0,0 +1,69 @@
|
||||
using SqlSugar;
|
||||
using System;
|
||||
|
||||
namespace Application.Domain.Entity
|
||||
{
|
||||
[Tenant("Kg.SeaTime.Resource")]
|
||||
public class game_city_map_bus
|
||||
{
|
||||
/// <summary>
|
||||
/// busId
|
||||
/// </summary>
|
||||
[SugarColumn(IsPrimaryKey = true)]
|
||||
public int busId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// busCode
|
||||
/// </summary>
|
||||
[SugarColumn(Length = 50, IsNullable = true)]
|
||||
public string? busCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// busName
|
||||
/// </summary>
|
||||
[SugarColumn(Length = 50, IsNullable = true)]
|
||||
public string? busName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// busType
|
||||
/// </summary>
|
||||
[SugarColumn(Length = 50, IsNullable = true)]
|
||||
public string? busType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// bus_s
|
||||
/// </summary>
|
||||
[SugarColumn(IsNullable = true)]
|
||||
public int? bus_s { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// bus_e
|
||||
/// </summary>
|
||||
[SugarColumn(IsNullable = true)]
|
||||
public int? bus_e { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// bus_l
|
||||
/// </summary>
|
||||
[SugarColumn(IsNullable = true)]
|
||||
public int? bus_l { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// busTips
|
||||
/// </summary>
|
||||
[SugarColumn(Length = 255, IsNullable = true)]
|
||||
public string? busTips { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// busNeed
|
||||
/// </summary>
|
||||
[SugarColumn(IsNullable = true)]
|
||||
public string? busNeed { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// busContent
|
||||
/// </summary>
|
||||
[SugarColumn(IsNullable = true)]
|
||||
public string? busContent { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -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