新增游戏绑定方式,修改任务排行
This commit is contained in:
@ -29,6 +29,7 @@ type GamesColumns struct {
|
||||
CreatedAt string // 创建时间
|
||||
UpdatedAt string // 更新时间
|
||||
DeletedAt string // 删除时间
|
||||
BoundType string // 1:qq绑定 2:wx绑定 3:all
|
||||
}
|
||||
|
||||
// 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.
|
||||
|
||||
Reference in New Issue
Block a user