新增游戏绑定方式,修改任务排行

This commit is contained in:
chy
2025-06-18 16:39:53 +08:00
parent e6a53f4837
commit 217b550d0f
16 changed files with 92 additions and 68 deletions

View File

@ -29,6 +29,7 @@ type GamesColumns struct {
CreatedAt string // 创建时间
UpdatedAt string // 更新时间
DeletedAt string // 删除时间
BoundType string // 1qq绑定 2wx绑定 3all
}
// gamesColumns holds the columns for the table games.
@ -41,6 +42,7 @@ var gamesColumns = GamesColumns{
CreatedAt: "created_at",
UpdatedAt: "updated_at",
DeletedAt: "deleted_at",
BoundType: "bound_type",
}
// NewGamesDao creates and returns a new DAO object for table data access.