22 lines
1.1 KiB
Go
22 lines
1.1 KiB
Go
|
|
// =================================================================================
|
|||
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|||
|
|
// =================================================================================
|
|||
|
|
|
|||
|
|
package entity
|
|||
|
|
|
|||
|
|
import (
|
|||
|
|
"github.com/gogf/gf/v2/os/gtime"
|
|||
|
|
)
|
|||
|
|
|
|||
|
|
// Config is the golang structure for table nl_config.
|
|||
|
|
type Config struct {
|
|||
|
|
Id uint `json:"id" orm:"id" description:"配置ID"`
|
|||
|
|
ConfigKey string `json:"config_key" orm:"config_key" description:"配置键"`
|
|||
|
|
ConfigValue string `json:"config_value" orm:"config_value" description:"配置值"`
|
|||
|
|
ConfigType string `json:"config_type" orm:"config_type" description:"配置类型"`
|
|||
|
|
Description string `json:"description" orm:"description" description:"配置描述"`
|
|||
|
|
Status int `json:"status" orm:"status" description:"状态:0禁用,1启用"`
|
|||
|
|
CreatedAt *gtime.Time `json:"created_at" orm:"created_at" description:"创建时间"`
|
|||
|
|
UpdatedAt *gtime.Time `json:"updated_at" orm:"updated_at" description:"更新时间"`
|
|||
|
|
}
|