查询当前登录用户排名,

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

@ -12,9 +12,10 @@ import (
// Games is the golang structure of table games for DAO operations like Where/Data.
type Games struct {
g.Meta `orm:"table:games, do:true"`
Id interface{} //
GameId interface{} // 腾讯游戏 id
GameName interface{} // 游戏名称
GameaCode interface{} // 游戏代号
GameCode interface{} // 游戏代号
Avatar interface{} // 图标
CreatedAt *gtime.Time // 创建时间
UpdatedAt *gtime.Time // 更新时间

View File

@ -21,4 +21,5 @@ type UserTasks struct {
UpdatedAt *gtime.Time // 更新时间
CompletedAt *gtime.Time // 任务完成时间
DeletedAt *gtime.Time // 软删除时间戳
StoreId interface{} // 门店 id
}