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