Files
Kg.SeaTime/Service/Application.Domain.Entity/resource/game/game_equ_attr.cs
2026-06-18 18:54:22 +08:00

82 lines
2.0 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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; }
}
}