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