mirror of
https://gitee.com/XM-GO/PandaX.git
synced 2026-05-12 22:52:10 +08:00
集成完成
This commit is contained in:
12
system/entity/settings.go
Normal file
12
system/entity/settings.go
Normal file
@@ -0,0 +1,12 @@
|
||||
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"` // 配置内容
|
||||
}
|
||||
Reference in New Issue
Block a user