查询当前登录用户排名,

This commit is contained in:
chy
2025-06-10 09:50:23 +08:00
parent 2819b9e9c2
commit 81c2769b92
22 changed files with 505 additions and 33 deletions

View File

@ -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",