| 12345678910111213141516171819202122232425262728293031323334353637 |
- using Admin.NET.Core;
- namespace Admin.NET.Plugin.AiDOP.Entity;
- /// <summary>
- /// 智慧运营详情看板页面级配置。
- /// </summary>
- [SugarTable("ado_smart_ops_dashboard_page_config", "智慧运营详情看板页面配置")]
- public class AdoSmartOpsDashboardPageConfig : ITenantIdFilter
- {
- [SugarColumn(ColumnDescription = "主键", IsPrimaryKey = true, IsIdentity = true)]
- public long Id { get; set; }
- [SugarColumn(ColumnDescription = "租户")]
- public long? TenantId { get; set; }
- [SugarColumn(ColumnDescription = "工厂")]
- public long FactoryId { get; set; }
- [SugarColumn(ColumnDescription = "模块", Length = 8)]
- public string ModuleCode { get; set; } = string.Empty;
- [SugarColumn(ColumnDescription = "导航模式 tabs_by_l1/single_page/auto", Length = 32)]
- public string NavigationMode { get; set; } = "auto";
- [SugarColumn(ColumnDescription = "Tab 来源 l1_metrics/custom", Length = 32)]
- public string TabSource { get; set; } = "l1_metrics";
- [SugarColumn(ColumnDescription = "默认 Tab 指标编码", Length = 64, IsNullable = true)]
- public string? DefaultTabMetricCode { get; set; }
- [SugarColumn(ColumnDescription = "主题", Length = 32)]
- public string Theme { get; set; } = "dark";
- [SugarColumn(ColumnDescription = "更新时间")]
- public DateTime UpdateTime { get; set; }
- }
|