Files
Kg.SeaTime/Service/Application.Domain.Entity/resource/game/game_exchange.cs
2026-07-07 08:38:26 +08:00

75 lines
1.8 KiB
C#

using SqlSugar;
using System;
namespace Application.Domain.Entity
{
[Tenant("Kg.SeaTime.Resource")]
public class game_exchange
{
/// <summary>
/// exId
/// </summary>
[SugarColumn(IsPrimaryKey = true)]
public int exId { get; set; }
/// <summary>
/// areaId
/// </summary>
[SugarColumn(Length = 50, IsNullable = true)]
public string? areaId { get; set; }
/// <summary>
/// npcId
/// </summary>
[SugarColumn(IsNullable = true)]
public int? npcId { get; set; }
/// <summary>
/// name
/// </summary>
[SugarColumn(Length = 50, IsNullable = true)]
public string? name { get; set; }
/// <summary>
/// tips
/// </summary>
[SugarColumn(IsNullable = true)]
public string? tips { get; set; }
/// <summary>
/// exType
/// </summary>
[SugarColumn(Length = 50, IsNullable = true)]
public string? exType { get; set; }
/// <summary>
/// count
/// </summary>
[SugarColumn(IsNullable = true)]
public int? count { get; set; }
/// <summary>
/// needData
/// </summary>
[SugarColumn(IsNullable = true,IsJson = true)]
public List<TowerNeed> needData { get; set; }
/// <summary>
/// getData
/// </summary>
[SugarColumn(IsNullable = true,IsJson = true)]
public List<TowerGet> getData { get; set; }
/// <summary>
/// startTime
/// </summary>
[SugarColumn(IsNullable = true)]
public DateTime? startTime { get; set; }
/// <summary>
/// endTime
/// </summary>
[SugarColumn(IsNullable = true)]
public DateTime? endTime { get; set; }
}
}