13 lines
507 B
Go
13 lines
507 B
Go
package modelmysql
|
|
|
|
type Bankrupt struct {
|
|
Id int `json:"id" gorm:"column:id"`
|
|
Platform int `json:"platform" gorm:"column:platform"`
|
|
Snid int `json:"snid" gorm:"column:snid"`
|
|
RegTs int `json:"register_time" gorm:"column:register_time"`
|
|
GameId int `json:"game_id" gorm:"column:game_id"`
|
|
GameFreeId int `json:"game_free_id" gorm:"column:game_free_id"`
|
|
Coin int `json:"use_coin" gorm:"column:use_coin"`
|
|
Ts int `json:"bankrupt_time" gorm:"column:bankrupt_time"`
|
|
}
|