123456789101112131415161718192021222324252627282930 |
- // 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 TableNameChapterLog = "chapter_logs"
- // ChapterLog mapped from table <chapter_logs>
- type ChapterLog struct {
- ID int64 `gorm:"column:id;type:bigint(20) unsigned;primaryKey;autoIncrement:true" json:"id"`
- ChannelID string `gorm:"column:channel_id;type:varchar(128);index:channel_id,priority:1;default:0" json:"channel_id"` // 渠道ID
- Flag int32 `gorm:"column:flag;type:int(11)" json:"flag"`
- UserID int64 `gorm:"column:user_id;type:bigint(20) unsigned;not null" 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
- EventID int32 `gorm:"column:event_id;type:int(11) unsigned;not null;index:event_id_event_at_idx,priority:1" json:"event_id"` // 埋点id
- ChapterID int32 `gorm:"column:chapter_id;type:int(11) unsigned;not null;index:user_at_event_at_chapter_diff_room_id_idx,priority:3" json:"chapter_id"` // 关卡id
- RoomID int64 `gorm:"column:room_id;type:bigint(20);not null;index:user_at_event_at_chapter_diff_room_id_idx,priority:5" json:"room_id"` // 房间id
- UserCreatedAt int32 `gorm:"column:user_created_at;type:int(11) unsigned;not null;index:user_at_event_at_chapter_diff_room_id_idx,priority:1" json:"user_created_at"` // 用户注册时间
- EventAt int32 `gorm:"column:event_at;type:int(11) unsigned;not null;index:event_at_idx,priority:1;index:event_id_event_at_idx,priority:2;index:user_at_event_at_chapter_diff_room_id_idx,priority:2" json:"event_at"` // 埋点事件触发的时间
- Extra string `gorm:"column:extra;type:varchar(4096)" json:"extra"` // 其他参数
- Token string `gorm:"column:token;type:char(64)" json:"token"` // 登陆的token
- Difficulty int32 `gorm:"column:difficulty;type:int(11);index:user_at_event_at_chapter_diff_room_id_idx,priority:4" json:"difficulty"` // 困难度
- EventAtNs int64 `gorm:"column:event_at_ns;type:bigint(20) unsigned" json:"event_at_ns"` // 埋点事件触发的时间
- }
- // TableName ChapterLog's table name
- func (*ChapterLog) TableName() string {
- return TableNameChapterLog
- }
|