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