using SqlSugar;
using System;
namespace Application.Domain.Entity
{
[Tenant("Kg.SeaTime.Resource")]
public class game_equ_attr
{
///
/// erId
///
[SugarColumn(IsPrimaryKey = true, Length = 50)]
public string erId { get; set; }
///
/// equCode
///
[SugarColumn(Length = 50, IsNullable = true)]
public string? equCode { get; set; }
///
/// minLev
///
[SugarColumn(IsNullable = true)]
public int? minLev { get; set; }
///
/// maxLev
///
[SugarColumn(IsNullable = true)]
public int? maxLev { get; set; }
///
/// 权重
///
[SugarColumn(IsNullable = true)]
public int? random { get; set; }
///
/// 属性类型:Number 数值 float 百分比
///
[SugarColumn(Length = 50, IsNullable = true)]
public string? nt { get; set; }
///
/// 属性
///
[SugarColumn(Length = 50, IsNullable = true)]
public string? code { get; set; }
///
/// compute
///
[SugarColumn(Length = 50, IsNullable = true)]
public string? compute { get; set; }
///
/// min_v
///
[SugarColumn(Length = 18, IsNullable = true)]
public decimal? min_v { get; set; }
///
/// max_v
///
[SugarColumn(Length = 18, IsNullable = true)]
public decimal? max_v { get; set; }
///
/// tips
///
[SugarColumn(Length = 255, IsNullable = true)]
public string? tips { get; set; }
///
/// remark
///
[SugarColumn(Length = 255, IsNullable = true)]
public string? remark { get; set; }
}
}