using SqlSugar; using System; namespace Application.Domain.Entity { [Tenant("Kg.SeaTime.Resource")] public class game_city_map_bus { /// /// busId /// [SugarColumn(IsPrimaryKey = true)] public int busId { get; set; } /// /// busCode /// [SugarColumn(Length = 50, IsNullable = true)] public string? busCode { get; set; } /// /// busName /// [SugarColumn(Length = 50, IsNullable = true)] public string? busName { get; set; } /// /// busType /// [SugarColumn(Length = 50, IsNullable = true)] public string? busType { get; set; } /// /// bus_s /// [SugarColumn(IsNullable = true)] public int? bus_s { get; set; } /// /// bus_e /// [SugarColumn(IsNullable = true)] public int? bus_e { get; set; } /// /// bus_l /// [SugarColumn(IsNullable = true)] public int? bus_l { get; set; } /// /// busTips /// [SugarColumn(Length = 255, IsNullable = true)] public string? busTips { get; set; } /// /// busNeed /// [SugarColumn(IsNullable = true)] public string? busNeed { get; set; } /// /// busContent /// [SugarColumn(IsNullable = true)] public string? busContent { get; set; } } }