fix: 字典数据空字符串存入
This commit is contained in:
@@ -3,5 +3,5 @@ package service
|
||||
// 通用请求 服务层接口
|
||||
type ICommont interface {
|
||||
// SystemConfigInfo 系统配置信息
|
||||
SystemConfigInfo() map[string]any
|
||||
SystemConfigInfo() map[string]string
|
||||
}
|
||||
|
||||
@@ -19,8 +19,8 @@ type CommontImpl struct {
|
||||
}
|
||||
|
||||
// SystemConfigInfo 系统配置信息
|
||||
func (s *CommontImpl) SystemConfigInfo() map[string]any {
|
||||
infoMap := map[string]any{}
|
||||
func (s *CommontImpl) SystemConfigInfo() map[string]string {
|
||||
infoMap := map[string]string{}
|
||||
// 获取LOGO类型
|
||||
logoType := s.sysConfigService.SelectConfigValueByKey("sys.logo.type")
|
||||
infoMap["logoType"] = logoType
|
||||
|
||||
Reference in New Issue
Block a user