118 lines
2.9 KiB
C#
118 lines
2.9 KiB
C#
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; }
|
||
}
|
||
}
|