hotgo/hotgo-server/app/service/internal/dto/sys_config.go

25 lines
821 B
Go
Raw Normal View History

2022-02-25 17:11:17 +08:00
// =================================================================================
// Code generated by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package dto
import (
"github.com/gogf/gf/v2/frame/g"
"github.com/gogf/gf/v2/os/gtime"
)
// SysConfig is the golang structure of table hg_sys_config for DAO operations like Where/Data.
type SysConfig struct {
g.Meta `orm:"table:hg_sys_config, dto:true"`
Id interface{} // 配置ID
Name interface{} // 参数名称
Key interface{} // 参数键名
Value interface{} // 参数键值
IsDefault interface{} // 是否默认
Status interface{} // 状态
Remark interface{} // 备注
CreatedAt *gtime.Time // 创建时间
UpdatedAt *gtime.Time // 更新时间
}