using SqlSugar; using System; namespace Application.Domain.Entity { [Tenant("Kg.SeaTime.Resource")] public class game_maxname { /// /// mnId /// [SugarColumn(IsPrimaryKey = true, Length = 50)] public string mnId { get; set; } /// /// name /// [SugarColumn(Length = 50, IsNullable = true)] public string name { get; set; } /// /// img /// [SugarColumn(Length = 50, IsNullable = true)] public string img { get; set; } /// /// attr /// [SugarColumn(IsNullable = true, IsJson = true)] public List attr { get; set; } /// /// remark /// [SugarColumn(IsNullable = true)] public string remark { get; set; } } }