This commit is contained in:
PandaGoAdmin
2021-12-14 15:58:48 +08:00
parent cd824b7f0c
commit 23f53bea59
24 changed files with 912 additions and 930 deletions

View File

@@ -1,12 +0,0 @@
package entity
import (
"encoding/json"
"pandax/base/model"
)
type SysSettings struct {
model.BaseAutoModel
Key string `gorm:"column:key; type:varchar(64)" json:"key" form:"key"`
Content json.RawMessage `gorm:"column:content; type:json" json:"content" form:"content"` // 配置内容
}