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.

18 lines
744 B

  1. // =================================================================================
  2. // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
  3. // =================================================================================
  4. package do
  5. import (
  6. "github.com/gogf/gf/v2/frame/g"
  7. )
  8. // GoClubs is the golang structure of table go_clubs for DAO operations like Where/Data.
  9. type GoClubs struct {
  10. g.Meta `orm:"table:go_clubs, do:true"`
  11. Id interface{} // 俱乐部唯一ID,自增
  12. Image interface{} // 俱乐部图片路径或相关标识,可为空
  13. Name interface{} // 俱乐部名称,最大长度255字符,不能为空
  14. Introduction interface{} // 俱乐部简介,文本内容,可为空
  15. }