集成完成

This commit is contained in:
feilong.teng@rheinchina.com
2021-12-12 19:49:39 +08:00
commit cd824b7f0c
462 changed files with 33688 additions and 0 deletions

12
system/entity/settings.go Normal file
View 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"` // 配置内容
}