sys_config.go 924 B

12345678910111213141516171819202122232425
  1. // =================================================================================
  2. // Code generated by GoFrame CLI tool. DO NOT EDIT. Created at 2022-04-18 21:09:17
  3. // =================================================================================
  4. package do
  5. import (
  6. "github.com/gogf/gf/v2/frame/g"
  7. "github.com/gogf/gf/v2/os/gtime"
  8. )
  9. // SysConfig is the golang structure of table sys_config for DAO operations like Where/Data.
  10. type SysConfig struct {
  11. g.Meta `orm:"table:sys_config, do:true"`
  12. ConfigId interface{} // 参数主键
  13. ConfigName interface{} // 参数名称
  14. ConfigKey interface{} // 参数键名
  15. ConfigValue interface{} // 参数键值
  16. ConfigType interface{} // 系统内置(Y是 N否)
  17. CreateBy interface{} // 创建者
  18. UpdateBy interface{} // 更新者
  19. Remark interface{} // 备注
  20. CreatedAt *gtime.Time // 创建时间
  21. UpdatedAt *gtime.Time // 修改时间
  22. }