using SqlSugar;
using System;
namespace Application.Domain.Entity
{
[Tenant("Kg.SeaTime.Resource")]
public class game_equ_up
{
///
/// euId
///
[SugarColumn(IsPrimaryKey = true)]
public int euId { get; set; }
///
/// onLev
///
[SugarColumn(IsNullable = true)]
public int? onLev { get; set; }
///
/// maxLev
///
[SugarColumn(IsNullable = true)]
public int? maxLev { get; set; }
///
/// okChance
///
[SugarColumn(IsNullable = true)]
public int? okChance { get; set; }
///
/// needData
///
[SugarColumn(IsNullable = true,IsJson = true)]
public List needData { get; set; }
}
}