mirror of
https://gitee.com/XM-GO/PandaX.git
synced 2026-05-12 22:52:10 +08:00
13 lines
306 B
Go
13 lines
306 B
Go
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"` // 配置内容
|
|
}
|