增加用户系统门户页、文章相关管理

This commit is contained in:
刘祥超
2024-01-09 10:20:29 +08:00
parent ea991f5a97
commit 6a671f67bc
16 changed files with 3481 additions and 3 deletions

View File

@@ -16,8 +16,9 @@ type UserUIConfig struct {
Version string `json:"version"` // 显示的版本号
ShowFinance bool `json:"showFinance"` // 是否显示财务相关信息
FaviconFileId int64 `json:"faviconFileId"` // Favicon文件ID
LogoFileId int64 `json:"logoFileId"` // Logo文件ID
TimeZone string `json:"timeZone"` // 时区
LogoFileId int64 `json:"logoFileId"` // 控制面板Logo文件ID
TimeZone string `json:"timeZone"` // 时区
ClientIPHeaderNames string `json:"clientIPHeaderNames"` // 客户端IP获取报头名称列表
@@ -36,6 +37,11 @@ type UserUIConfig struct {
BandwidthAlgo BandwidthAlgo `json:"bandwidthAlgo"` // 带宽算法
} `json:"trafficStats"` // 流量统计相关设置
Portal struct {
IsOn bool `json:"isOn"` // 是否启用
LogoFileId int64 `json:"logoFileId"` // Logo文件ID
} `json:"portal"` // 门户页面相关设置
Theme ThemeConfig `yaml:"theme" json:"theme"` // 风格模板
}