You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
893 B
26 lines
893 B
3 years ago
|
// =================================================================================
|
||
|
// Code generated by GoFrame CLI tool. DO NOT EDIT.
|
||
|
// =================================================================================
|
||
|
|
||
|
package do
|
||
|
|
||
|
import (
|
||
|
"github.com/gogf/gf/v2/frame/g"
|
||
|
"github.com/gogf/gf/v2/os/gtime"
|
||
|
)
|
||
|
|
||
|
// SysConfig is the golang structure of table sys_config for DAO operations like Where/Data.
|
||
|
type SysConfig struct {
|
||
|
g.Meta `orm:"table:sys_config, do:true"`
|
||
|
ConfigId interface{} // 参数主键
|
||
|
ConfigName interface{} // 参数名称
|
||
|
ConfigKey interface{} // 参数键名
|
||
|
ConfigValue interface{} // 参数键值
|
||
|
ConfigType interface{} // 系统内置(Y是 N否)
|
||
|
CreateBy interface{} // 创建者
|
||
|
UpdateBy interface{} // 更新者
|
||
|
Remark interface{} // 备注
|
||
|
CreatedAt *gtime.Time // 创建时间
|
||
|
UpdatedAt *gtime.Time // 修改时间
|
||
|
}
|