| 12345678910111213141516171819202122232425 |
- package task
- import "time"
- type GameRatioData struct {
- Id uint `json:"id" gorm:"primarykey"`
- CreatedAt time.Time
- UpdatedAt time.Time
- GameId int `json:"game_id"`
- Second int `json:"second"` // 次留
- Third int `json:"third"` // 3留
- Forth int `json:"forth"` // 4留
- Fifth int `json:"fifth"` // 5留
- Sixth int `json:"sixth"` // 6留
- Seventh int `json:"seventh"` // 7留
- Tenth int `json:"tenth"` // 10留
- Fifteenth int `json:"fifteenth"` // 15留
- Twentieth int `json:"twentieth"` // 20留
- Thirtieth int `json:"thirtieth"` // 30留
- }
- func (GameRatioData) TableName() string {
- return "game_ratio_data"
- }
|