查询任务排行,新增游戏基本接口
This commit is contained in:
22
internal/model/do/games.go
Normal file
22
internal/model/do/games.go
Normal file
@ -0,0 +1,22 @@
|
||||
// =================================================================================
|
||||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
// =================================================================================
|
||||
|
||||
package do
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/frame/g"
|
||||
"github.com/gogf/gf/v2/os/gtime"
|
||||
)
|
||||
|
||||
// Games is the golang structure of table games for DAO operations like Where/Data.
|
||||
type Games struct {
|
||||
g.Meta `orm:"table:games, do:true"`
|
||||
GameId interface{} // 腾讯游戏 id
|
||||
GameName interface{} // 游戏名称
|
||||
GameaCode interface{} // 游戏代号
|
||||
Avatar interface{} // 图标
|
||||
CreatedAt *gtime.Time // 创建时间
|
||||
UpdatedAt *gtime.Time // 更新时间
|
||||
DeletedAt *gtime.Time // 删除时间
|
||||
}
|
||||
Reference in New Issue
Block a user