Files
rag-local/kb/model/entity/system_config.go
T
2026-08-05 10:28:44 +08:00

11 lines
302 B
Go

package entity
import "github.com/gogf/gf/v2/os/gtime"
type SystemConfig struct {
Id int64 `orm:"id" json:"id"`
CfgKey string `orm:"cfg_key" json:"cfg_key"`
CfgValue string `orm:"cfg_value" json:"cfg_value"`
UpdatedAt *gtime.Time `orm:"updated_at" json:"updated_at"`
}