Files
Kg.SeaTime/Service/Application.Domain.Entity/resource/game/game_city_map.cs
Putoo 784bc66ef6 111
2026-05-20 18:32:54 +08:00

118 lines
2.9 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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; }
}
}