11 lines
302 B
Go
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"`
|
|
}
|