namespace Admin.NET.Plugin.GoView.Entity; /// /// GoView 项目数据表 /// [SugarTable(null, "GoView 项目数据表")] public class GoViewProjectData : EntityTenant { /// /// 项目参数 /// [SugarColumn(ColumnDescription = "项目参数", ColumnDataType = StaticConfig.CodeFirst_BigString)] public string? Content { get; set; } /// /// 预览图片 /// [SugarColumn(ColumnDescription = "预览图片", ColumnDataType = StaticConfig.CodeFirst_BigString)] public string? IndexImageData { get; set; } }