using SqlSugar; using System; namespace Application.Domain.Entity { [Tenant("Kg.SeaTime.Resource")] public class game_city { /// /// cityId /// [SugarColumn(IsPrimaryKey = true)] public int cityId { get; set; } /// /// cityName /// [SugarColumn(Length = 20, IsNullable = true)] public string? cityName { get; set; } /// /// parent /// [SugarColumn(IsNullable = true)] public int? parent { get; set; } /// /// type /// [SugarColumn(Length = 20, IsNullable = true)] public string? type { get; set; } /// /// toMap /// [SugarColumn(Length = 20, IsNullable = true)] public string? toMap { get; set; } /// /// 城市范围x起始坐标 /// [SugarColumn(IsNullable = true)] public int? x_s { get; set; } /// /// 城市范围x结束坐标 /// [SugarColumn(IsNullable = true)] public int? x_e { get; set; } /// /// 城市范围y起始坐标 /// [SugarColumn(IsNullable = true)] public int? y_s { get; set; } /// /// 城市范围y结束坐标 /// [SugarColumn(IsNullable = true)] public int? y_e { get; set; } /// /// sort /// [SugarColumn(IsNullable = true)] public int? sort { get; set; } } }