sys_config.go 1.1 KB

1234567891011121314151617181920212223
  1. // =================================================================================
  2. // Code generated by GoFrame CLI tool. DO NOT EDIT. Created at 2022-04-18 21:09:17
  3. // =================================================================================
  4. package entity
  5. import (
  6. "github.com/gogf/gf/v2/os/gtime"
  7. )
  8. // SysConfig is the golang structure for table sys_config.
  9. type SysConfig struct {
  10. ConfigId uint `json:"configId" description:"参数主键"`
  11. ConfigName string `json:"configName" description:"参数名称"`
  12. ConfigKey string `json:"configKey" description:"参数键名"`
  13. ConfigValue string `json:"configValue" description:"参数键值"`
  14. ConfigType int `json:"configType" description:"系统内置(Y是 N否)"`
  15. CreateBy uint `json:"createBy" description:"创建者"`
  16. UpdateBy uint `json:"updateBy" description:"更新者"`
  17. Remark string `json:"remark" description:"备注"`
  18. CreatedAt *gtime.Time `json:"createdAt" description:"创建时间"`
  19. UpdatedAt *gtime.Time `json:"updatedAt" description:"修改时间"`
  20. }