Files
Kg.SeaTime/Service/Application.Domain.Entity/resource/game/game_equ_awaken.cs
2026-06-17 19:22:35 +08:00

39 lines
971 B
C#

using SqlSugar;
using System;
namespace Application.Domain.Entity
{
[Tenant("Kg.SeaTime.Resource")]
public class game_equ_awaken
{
/// <summary>
/// 特性表
/// </summary>
[SugarColumn(IsPrimaryKey = true, Length = 50)]
public string atId { get; set; }
/// <summary>
/// 特性名称
/// </summary>
[SugarColumn(Length = 50, IsNullable = true)]
public string? name { get; set; }
/// <summary>
/// levAttr
/// </summary>
[SugarColumn(IsNullable = true,IsJson = true)]
public List<EquAwakenData> levAttr { get; set; }
/// <summary>
/// 权重
/// </summary>
[SugarColumn(IsNullable = true)]
public int? random { get; set; }
/// <summary>
/// 可觉醒装备
/// </summary>
[SugarColumn(IsNullable = true)]
public string? position { get; set; }
}
}