| 1234567891011121314151617181920 |
- package task
- type GameRetentionRatio struct {
- GameId int `json:"game_id"` //游戏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 (GameRetentionRatio) TableName() string {
- return "game_retention_ratio"
- }
|