39 lines
913 B
C#
39 lines
913 B
C#
using SqlSugar;
|
|
using System;
|
|
|
|
namespace Application.Domain.Entity
|
|
{
|
|
[Tenant("Kg.SeaTime.Resource")]
|
|
public class game_equ_up
|
|
{
|
|
/// <summary>
|
|
/// euId
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|
public int euId { get; set; }
|
|
|
|
/// <summary>
|
|
/// onLev
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public int? onLev { get; set; }
|
|
|
|
/// <summary>
|
|
/// maxLev
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public int? maxLev { get; set; }
|
|
|
|
/// <summary>
|
|
/// okChance
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public int? okChance { get; set; }
|
|
|
|
/// <summary>
|
|
/// needData
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true,IsJson = true)]
|
|
public List<TowerNeeds> needData { get; set; }
|
|
}
|
|
} |