mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-01-31 08:48:39 +08:00
23 lines
984 B
Go
23 lines
984 B
Go
// =================================================================================
|
|
// Code generated by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package entity
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/os/gtime"
|
|
)
|
|
|
|
// SysConfig is the golang structure for table sys_config.
|
|
type SysConfig struct {
|
|
Id int64 `json:"id" description:"配置ID"`
|
|
Name string `json:"name" description:"参数名称"`
|
|
Key string `json:"key" description:"参数键名"`
|
|
Value string `json:"value" description:"参数键值"`
|
|
IsDefault string `json:"is_default" description:"是否默认"`
|
|
Status string `json:"status" description:"状态"`
|
|
Remark string `json:"remark" description:"备注"`
|
|
CreatedAt *gtime.Time `json:"created_at" description:"创建时间"`
|
|
UpdatedAt *gtime.Time `json:"updated_at" description:"更新时间"`
|
|
}
|