查询任务排行,新增游戏基本接口
This commit is contained in:
22
internal/dao/games.go
Normal file
22
internal/dao/games.go
Normal 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.
|
||||
Reference in New Issue
Block a user