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

63 lines
1.5 KiB
C#

using SqlSugar;
using System;
namespace Application.Domain.Entity
{
[Tenant("Kg.SeaTime.Resource")]
public class game_city_npc
{
/// <summary>
/// npcId
/// </summary>
[SugarColumn(IsPrimaryKey = true)]
public int npcId { get; set; }
/// <summary>
/// areaId
/// </summary>
[SugarColumn(Length = 255, IsNullable = true)]
public string? areaId { get; set; }
/// <summary>
/// mapId
/// </summary>
[SugarColumn(Length = 20, IsNullable = true)]
public string? mapId { get; set; }
/// <summary>
/// npcName
/// </summary>
[SugarColumn(Length = 50, IsNullable = true)]
public string? npcName { get; set; }
/// <summary>
/// tips
/// </summary>
[SugarColumn(Length = 50, IsNullable = true)]
public string? tips { get; set; }
/// <summary>
/// code
/// </summary>
[SugarColumn(Length = 50, IsNullable = true)]
public string? code { get; set; }
/// <summary>
/// story
/// </summary>
[SugarColumn(IsNullable = true)]
public string? story { get; set; }
/// <summary>
/// status
/// </summary>
[SugarColumn(IsNullable = true)]
public int? status { get; set; }
/// <summary>
/// bus
/// </summary>
[SugarColumn(IsNullable = true)]
public string? bus { get; set; }
}
}