Files
arenax-server/internal/model/do/games.go

25 lines
831 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// =================================================================================
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package do
import (
"github.com/gogf/gf/v2/frame/g"
"github.com/gogf/gf/v2/os/gtime"
)
// 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{} // 游戏名称
GameCode interface{} // 游戏代号
Avatar interface{} // 图标
CreatedAt *gtime.Time // 创建时间
UpdatedAt *gtime.Time // 更新时间
DeletedAt *gtime.Time // 删除时间
BoundType interface{} // 1qq绑定 2wx绑定 3all
}