using SqlSugar; using System; namespace Application.Domain.Entity { [Tenant("Kg.SeaTime.Resource")] public class game_equ_suit { /// /// 套装编码 /// [SugarColumn(IsPrimaryKey = true, Length = 50)] public string suitCode { get; set; } /// /// 套装名称 /// [SugarColumn(Length = 50, IsNullable = true)] public string? suitName { get; set; } /// /// 套装介绍 /// [SugarColumn(Length = 500, IsNullable = true)] public string? sign { get; set; } /// /// 属性 /// [SugarColumn(IsNullable = true,IsJson = true)] public List? attr { get; set; } /// /// 套装组成装备 /// [SugarColumn(IsNullable = true,IsJson = true)] public List onEqu { get; set; } /// /// 套装特权 /// [SugarColumn(IsNullable = true)] public string? role { get; set; } } }