mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-03 20:40:25 +08:00
12 lines
557 B
Go
12 lines
557 B
Go
package systemconfigs
|
|
|
|
// 用户界面相关配置
|
|
type UserUIConfig struct {
|
|
ProductName string `json:"productName"` // 产品名
|
|
UserSystemName string `json:"userSystemName"` // 管理员系统名称
|
|
ShowOpenSourceInfo bool `json:"showOpenSourceInfo"` // 是否显示开源信息
|
|
ShowVersion bool `json:"showVersion"` // 是否显示版本号
|
|
Version string `json:"version"` // 显示的版本号
|
|
ShowFinance bool `json:"showFinance"` // 是否显示财务相关信息
|
|
}
|