field.go 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. package model
  2. //record 字段
  3. const (
  4. ID = "id"
  5. SVID = "svid"
  6. AVID = "avid"
  7. CID = "cid"
  8. Title = "title"
  9. Content = "content"
  10. Duration = "duration"
  11. TID = "tid"
  12. SubTid = "sub_tid"
  13. ScatterTag = "scatter_tag"
  14. Tags = "tags"
  15. TagsName = "tags_name"
  16. TagsID = "tags_id"
  17. TagsType = "tags_type"
  18. ZoneName = "ZoneName"
  19. ZoneID = "ZoneID"
  20. PlayHive = "play_hive"
  21. FavHive = "fav_hive"
  22. LikesHive = "likes_hive"
  23. ShareHive = "share_hive"
  24. ReplyHive = "reply_hive"
  25. DanmuHive = "danmu_hive"
  26. CoinHive = "coin_hive"
  27. PlayWeekBili = "play_week_bili"
  28. FavWeekBili = "fav_week_bili"
  29. LikesWeekBili = "likes_week_bili"
  30. ShareWeekBili = "share_week_bili"
  31. ReplyWeekBili = "reply_week_bili"
  32. DanmuWeekBili = "danmu_week_bili"
  33. CoinWeekBili = "coin_week_bili"
  34. PlayDayBili = "play_day_bili"
  35. FavDayBili = "fav_day_bili"
  36. LikesDayBili = "likes_day_bili"
  37. ShareDayBili = "share_day_bili"
  38. ReplyDayBili = "reply_day_bili"
  39. DanmuDayBili = "danmu_day_bili"
  40. CoinDayBili = "coin_day_bili"
  41. PlayMonthTotal = "play_month_total"
  42. PlayMonthFinish = "play_month_finish"
  43. PlayMonth = "play_month"
  44. FavMonth = "fav_month"
  45. LikesMonth = "likes_month"
  46. ShareMonth = "share_month"
  47. ReplyMonth = "reply_month"
  48. DanmuMonth = "danmu_month"
  49. PlayWeekTotal = "play_week_total"
  50. PlayWeekFinish = "play_week_finish"
  51. PlayWeek = "play_week"
  52. LikesWeek = "likes_week"
  53. ShareWeek = "share_week"
  54. ReplyWeek = "reply_week"
  55. DanmuWeek = "danmu_week"
  56. PlayDayTotal = "play_day_total"
  57. PlayDayFinish = "play_day_finish"
  58. PlayDay = "play_day"
  59. LikesDay = "likes_day"
  60. ShareDay = "share_day"
  61. ReplyDay = "reply_day"
  62. DanmuDay = "danmu_day"
  63. UperMid = "mid"
  64. PubTime = "PubTime"
  65. State = "state"
  66. Retriever = "retriever"
  67. RecallClasses = "RecallClasses"
  68. RecallTags = "RecallTags"
  69. RecallOrder = "RecallOrder"
  70. RecallScore = "RecallScore"
  71. SourceTimeToNow = "SourceTimeToNow"
  72. )