Files
Putoo 784bc66ef6 111
2026-05-20 18:32:54 +08:00

70 lines
1.7 KiB
C#

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