using System; using System.Collections.Generic; using System.Text; namespace DllUfpEntity.Dto { public class WebConfig { /// /// Logo /// public string Logo { get; set; } /// /// APP名称 /// public string AppName { get; set; } /// /// slogan /// public string Slogan { get; set; } /// /// 默认首页 /// public string Index { get; set; } /// /// 是否记录访问日志 /// public bool VisitLog { get; set; } /// /// 机台状态看板配置 /// public ExternalLinkConfig MacDashboard { get; set; } /// /// 大连线看板配置 /// public ExternalLinkConfig DlxDashboard { get; set; } /// /// 头部小部件数量 /// public int HeaderWidgetCount { get; set; } /// /// ReuseTab组件显示的位置 /// public string ReuseTabPosition { get; set; } = "normal"; } public class ExternalLinkConfig { /// /// 是否显示 /// public bool Show { get; set; } /// /// 跳转地址 /// public string Url { get; set; } } }