This commit is contained in:
Putoo
2026-05-20 18:32:54 +08:00
parent 2c85872abd
commit 784bc66ef6
51 changed files with 1818 additions and 106 deletions

View File

@@ -0,0 +1,117 @@
using SqlSugar;
using System;
namespace Application.Domain.Entity
{
[Tenant("Kg.SeaTime.Resource")]
public class game_city_map
{
/// <summary>
/// mapId
/// </summary>
[SugarColumn(IsPrimaryKey = true, Length = 20)]
public string mapId { get; set; }
/// <summary>
/// mapName
/// </summary>
[SugarColumn(Length = 50, IsNullable = true)]
public string? mapName { get; set; }
/// <summary>
/// x
/// </summary>
[SugarColumn(IsNullable = true)]
public int? x { get; set; }
/// <summary>
/// y
/// </summary>
[SugarColumn(IsNullable = true)]
public int? y { get; set; }
/// <summary>
/// code
/// </summary>
[SugarColumn(Length = 50, IsNullable = true)]
public string? code { get; set; }
/// <summary>
/// cityId
/// </summary>
[SugarColumn(IsNullable = true)]
public int? cityId { get; set; }
/// <summary>
/// isPk
/// </summary>
[SugarColumn(IsNullable = true)]
public int? isPk { get; set; }
/// <summary>
/// show
/// </summary>
[SugarColumn(IsNullable = true)]
public int? show { get; set; }
/// <summary>
/// isHome
/// </summary>
[SugarColumn(IsNullable = true)]
public int? isHome { get; set; }
/// <summary>
/// 是否可采集 0不可采集 2可采集
/// </summary>
[SugarColumn(IsNullable = true)]
public int? isRes { get; set; }
/// <summary>
/// isBus
/// </summary>
[SugarColumn(IsNullable = true)]
public int? isBus { get; set; }
/// <summary>
/// retMap
/// </summary>
[SugarColumn(Length = 20, IsNullable = true)]
public string? retMap { get; set; }
/// <summary>
/// near
/// </summary>
[SugarColumn(IsNullable = true,IsJson = true)]
public List<MapNear> near { get; set; }
/// <summary>
/// tips
/// </summary>
[SugarColumn(Length = 255, IsNullable = true)]
public string? tips { get; set; }
/// <summary>
/// 是否查看附近的人0不显示 1显示
/// </summary>
[SugarColumn(IsNullable = true)]
public int? lookUser { get; set; }
/// <summary>
/// 附近人显示方式0不限制1当前区
/// </summary>
[SugarColumn(IsNullable = true)]
public int? lookArea { get; set; }
/// <summary>
/// 进入权限0不限制1验证
/// </summary>
[SugarColumn(IsNullable = true)]
public int? inRole { get; set; }
/// <summary>
/// 锁定时间
/// </summary>
[SugarColumn(IsNullable = true)]
public int? lockTime { get; set; }
}
}