mirror of
https://github.com/yangjian102621/geekai.git
synced 2025-09-18 01:06:39 +08:00
8 lines
171 B
Go
8 lines
171 B
Go
package model
|
|
|
|
type Config struct {
|
|
Id uint `gorm:"primarykey;column:id"`
|
|
Key string `gorm:"column:marker;unique"`
|
|
Config string `gorm:"column:config_json"`
|
|
}
|