查询任务排行,新增游戏基本接口

This commit is contained in:
chy
2025-06-09 16:30:26 +08:00
parent 5ead851b99
commit a598a253a9
17 changed files with 409 additions and 0 deletions

22
internal/dao/games.go Normal file
View File

@ -0,0 +1,22 @@
// =================================================================================
// This file is auto-generated by the GoFrame CLI tool. You may modify it as needed.
// =================================================================================
package dao
import (
"server/internal/dao/internal"
)
// gamesDao is the data access object for the table games.
// You can define custom methods on it to extend its functionality as needed.
type gamesDao struct {
*internal.GamesDao
}
var (
// Games is a globally accessible object for table games operations.
Games = gamesDao{internal.NewGamesDao()}
)
// Add your custom methods and functionality below.