Files
Kg.SeaTime/Service/Application.Domain.Entity/resource/game/game_city_npc_store.cs
2026-05-27 18:26:50 +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_store
{
/// <summary>
/// storeId
/// </summary>
[SugarColumn(IsPrimaryKey = true, Length = 50)]
public string storeId { get; set; }
/// <summary>
/// npcId
/// </summary>
[SugarColumn(IsNullable = true)]
public int? npcId { get; set; }
/// <summary>
/// areaId
/// </summary>
[SugarColumn(Length = 50, IsNullable = true)]
public string? areaId { get; set; }
/// <summary>
/// type
/// </summary>
[SugarColumn(Length = 50, IsNullable = true)]
public string? type { get; set; }
/// <summary>
/// name
/// </summary>
[SugarColumn(Length = 50, IsNullable = true)]
public string? name { get; set; }
/// <summary>
/// parameter
/// </summary>
[SugarColumn(Length = 11, IsNullable = true)]
public string? parameter { get; set; }
/// <summary>
/// price
/// </summary>
[SugarColumn(IsNullable = true)]
public long? price { get; set; }
/// <summary>
/// payType
/// </summary>
[SugarColumn(Length = 50, IsNullable = true)]
public string? payType { get; set; }
/// <summary>
/// sort
/// </summary>
[SugarColumn(IsNullable = true)]
public int? sort { get; set; }
}
}