123456789101112131415161718192021222324252627 |
- // Code generated by gorm.io/gen. DO NOT EDIT.
- // Code generated by gorm.io/gen. DO NOT EDIT.
- // Code generated by gorm.io/gen. DO NOT EDIT.
- package model
- const TableNameGrandmasterLog = "grandmaster_logs"
- // GrandmasterLog mapped from table <grandmaster_logs>
- type GrandmasterLog struct {
- ID int64 `gorm:"column:id;type:bigint(20) unsigned;primaryKey;autoIncrement:true" json:"id"`
- UserID int64 `gorm:"column:user_id;type:bigint(20) unsigned;not null;index:user_id,priority:1;index:user_id_2,priority:1" json:"user_id"` // 用户id
- ServerID int32 `gorm:"column:server_id;type:int(11);not null;index:server_id,priority:1;default:1" json:"server_id"` // 服务器ID
- ChannelID string `gorm:"column:channel_id;type:varchar(128);index:channel_id,priority:1;default:0" json:"channel_id"` // 渠道ID
- EventID int32 `gorm:"column:event_id;type:int(11) unsigned;not null;index:event_at_idex,priority:2;index:event_id,priority:1;index:create_event_id_at_idx,priority:1" json:"event_id"` // 埋点id
- MatchSeconds int64 `gorm:"column:match_seconds;type:bigint(20)" json:"match_seconds"` // 匹配时长
- DanScore int64 `gorm:"column:dan_score;type:bigint(20)" json:"dan_score"` // 段位积分
- BattleWaves int64 `gorm:"column:battle_waves;type:bigint(20)" json:"battle_waves"` // 战斗波数
- BattleSeconds int64 `gorm:"column:battle_seconds;type:bigint(20)" json:"battle_seconds"` // 战斗时长
- Date string `gorm:"column:date;type:date;index:date,priority:1" json:"date"`
- EventAt int32 `gorm:"column:event_at;type:int(11) unsigned;not null;index:event_at_idex,priority:1;index:user_id_2,priority:2;index:create_event_id_at_idx,priority:2" json:"event_at"` // 埋点事件触发的时间
- }
- // TableName GrandmasterLog's table name
- func (*GrandmasterLog) TableName() string {
- return TableNameGrandmasterLog
- }
|