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

69 lines
1.7 KiB
C#

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; }
}
}