chapter_logs_user_details.gen.go 3.1 KB

12345678910111213141516171819202122232425262728
  1. // Code generated by gorm.io/gen. DO NOT EDIT.
  2. // Code generated by gorm.io/gen. DO NOT EDIT.
  3. // Code generated by gorm.io/gen. DO NOT EDIT.
  4. package model
  5. const TableNameChapterLogsUserDetail = "chapter_logs_user_details"
  6. // ChapterLogsUserDetail mapped from table <chapter_logs_user_details>
  7. type ChapterLogsUserDetail struct {
  8. ID int64 `gorm:"column:id;type:bigint(20) unsigned;primaryKey;autoIncrement:true" json:"id"`
  9. UserID int64 `gorm:"column:user_id;type:bigint(20) unsigned;not null;index:user_id,priority:1" json:"user_id"` // 用户id
  10. ServerID int32 `gorm:"column:server_id;type:int(11);not null;index:server_id,priority:1;default:1" json:"server_id"` // 服务器ID
  11. EventID int32 `gorm:"column:event_id;type:int(11) unsigned;not null;index:event_id_event_at_idx,priority:1" json:"event_id"` // 埋点id
  12. 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
  13. RoomID int32 `gorm:"column:room_id;type:int(11);not null;index:user_at_event_at_chapter_diff_room_id_idx,priority:5" json:"room_id"` // 房间id
  14. 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"` // 用户注册时间
  15. EventAt int32 `gorm:"column:event_at;type:int(11) unsigned;not null;index:event_id_event_at_idx,priority:2;index:user_at_event_at_chapter_diff_room_id_idx,priority:2;index:event_at_idx,priority:1" json:"event_at"` // 埋点事件触发的时间
  16. Extra string `gorm:"column:extra;type:longtext" json:"extra"` // 其他参数
  17. Token string `gorm:"column:token;type:char(64)" json:"token"` // 登陆的token
  18. Difficulty int32 `gorm:"column:difficulty;type:int(11);index:user_at_event_at_chapter_diff_room_id_idx,priority:4" json:"difficulty"` // 困难度
  19. EventAtNs int64 `gorm:"column:event_at_ns;type:bigint(20) unsigned" json:"event_at_ns"` // 埋点事件触发的时间
  20. }
  21. // TableName ChapterLogsUserDetail's table name
  22. func (*ChapterLogsUserDetail) TableName() string {
  23. return TableNameChapterLogsUserDetail
  24. }