查询当前登录用户排名,
This commit is contained in:
@ -21,9 +21,10 @@ type GamesDao struct {
|
||||
|
||||
// GamesColumns defines and stores column names for the table games.
|
||||
type GamesColumns struct {
|
||||
Id string //
|
||||
GameId string // 腾讯游戏 id
|
||||
GameName string // 游戏名称
|
||||
GameaCode string // 游戏代号
|
||||
GameCode string // 游戏代号
|
||||
Avatar string // 图标
|
||||
CreatedAt string // 创建时间
|
||||
UpdatedAt string // 更新时间
|
||||
@ -32,9 +33,10 @@ type GamesColumns struct {
|
||||
|
||||
// gamesColumns holds the columns for the table games.
|
||||
var gamesColumns = GamesColumns{
|
||||
Id: "id",
|
||||
GameId: "game_id",
|
||||
GameName: "game_name",
|
||||
GameaCode: "gamea_code",
|
||||
GameCode: "game_code",
|
||||
Avatar: "avatar",
|
||||
CreatedAt: "created_at",
|
||||
UpdatedAt: "updated_at",
|
||||
|
||||
Reference in New Issue
Block a user