videoods.wx_video.json 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254
  1. {
  2. "name": "wx_video",
  3. "project": "videoods",
  4. "comment": "视频表",
  5. "columns": [
  6. {
  7. "name": "id",
  8. "type": "BIGINT",
  9. "comment": "主键编号,取值来源为redis分布式主键"
  10. },
  11. {
  12. "name": "uid",
  13. "type": "BIGINT",
  14. "comment": "用户编号,用户信息表中的uid字段"
  15. },
  16. {
  17. "name": "title",
  18. "type": "STRING",
  19. "comment": "标题"
  20. },
  21. {
  22. "name": "video_path",
  23. "type": "STRING",
  24. "comment": "视频地址"
  25. },
  26. {
  27. "name": "cover_img_path",
  28. "type": "STRING",
  29. "comment": "封面图片地址"
  30. },
  31. {
  32. "name": "self_cover_img_path",
  33. "type": "STRING",
  34. "comment": "自定义封面图片地址"
  35. },
  36. {
  37. "name": "share_moment_img_path",
  38. "type": "STRING",
  39. "comment": "分享到朋友圈的图片保存地址"
  40. },
  41. {
  42. "name": "qrimg_path",
  43. "type": "STRING",
  44. "comment": "pc端生成二维码的保存路径"
  45. },
  46. {
  47. "name": "width",
  48. "type": "BIGINT",
  49. "comment": ""
  50. },
  51. {
  52. "name": "height",
  53. "type": "BIGINT",
  54. "comment": ""
  55. },
  56. {
  57. "name": "cover_img_width",
  58. "type": "BIGINT",
  59. "comment": ""
  60. },
  61. {
  62. "name": "cover_img_height",
  63. "type": "BIGINT",
  64. "comment": ""
  65. },
  66. {
  67. "name": "play_count",
  68. "type": "BIGINT",
  69. "comment": "播放次数,去重"
  70. },
  71. {
  72. "name": "play_count_total",
  73. "type": "BIGINT",
  74. "comment": "被播放总次数,不去重"
  75. },
  76. {
  77. "name": "share_count",
  78. "type": "BIGINT",
  79. "comment": "分享次数,去重"
  80. },
  81. {
  82. "name": "share_count_total",
  83. "type": "BIGINT",
  84. "comment": "被分享到朋友圈总次数,不去重"
  85. },
  86. {
  87. "name": "reported_count",
  88. "type": "BIGINT",
  89. "comment": "被举报次数"
  90. },
  91. {
  92. "name": "share_count_friend",
  93. "type": "BIGINT",
  94. "comment": "微信分享给朋友的次数,不去重"
  95. },
  96. {
  97. "name": "share_count_friend_total",
  98. "type": "BIGINT",
  99. "comment": "被分享给微信好友的总次数,不去重"
  100. },
  101. {
  102. "name": "favoriteds",
  103. "type": "BIGINT",
  104. "comment": "视频被收藏的次数"
  105. },
  106. {
  107. "name": "total_time",
  108. "type": "BIGINT",
  109. "comment": "视频时长"
  110. },
  111. {
  112. "name": "rotate",
  113. "type": "STRING",
  114. "comment": ""
  115. },
  116. {
  117. "name": "bit_rate",
  118. "type": "BIGINT",
  119. "comment": "比率"
  120. },
  121. {
  122. "name": "transcode_status",
  123. "type": "BIGINT",
  124. "comment": "转码状态(1:发送转码失败,2:转码中,3:转码完成,4:转码失败)"
  125. },
  126. {
  127. "name": "transcode_done_datetime",
  128. "type": "DATETIME",
  129. "comment": "转码完成时间"
  130. },
  131. {
  132. "name": "request_id",
  133. "type": "STRING",
  134. "comment": ""
  135. },
  136. {
  137. "name": "job_id",
  138. "type": "STRING",
  139. "comment": ""
  140. },
  141. {
  142. "name": "transed_video_path",
  143. "type": "STRING",
  144. "comment": ""
  145. },
  146. {
  147. "name": "gmt_create",
  148. "type": "DATETIME",
  149. "comment": "创建时间"
  150. },
  151. {
  152. "name": "changed_by",
  153. "type": "BIGINT",
  154. "comment": "由谁修改"
  155. },
  156. {
  157. "name": "gmt_modified",
  158. "type": "DATETIME",
  159. "comment": "最后修改时间"
  160. },
  161. {
  162. "name": "gmt_create_timestamp",
  163. "type": "BIGINT",
  164. "comment": "创建时间戳,用来排序和分页查询"
  165. },
  166. {
  167. "name": "gmt_modified_timestamp",
  168. "type": "BIGINT",
  169. "comment": "最后修改时间戳,用来排序和分页查询"
  170. },
  171. {
  172. "name": "version",
  173. "type": "BIGINT",
  174. "comment": "数据版本号,用来做版本控制和乐观锁"
  175. },
  176. {
  177. "name": "status",
  178. "type": "BIGINT",
  179. "comment": "数据状态,1有效,2 已删除,3 已屏蔽,4关注可见,5分享可见,6自己可见"
  180. },
  181. {
  182. "name": "system",
  183. "type": "STRING",
  184. "comment": "发送视频时的操作系统"
  185. },
  186. {
  187. "name": "file_extensions",
  188. "type": "STRING",
  189. "comment": "视频后缀名"
  190. },
  191. {
  192. "name": "examine_status",
  193. "type": "BIGINT",
  194. "comment": "审核状态(0:上传未审,1:上传已审)"
  195. },
  196. {
  197. "name": "content_md5",
  198. "type": "STRING",
  199. "comment": "原视频的md5"
  200. },
  201. {
  202. "name": "size",
  203. "type": "BIGINT",
  204. "comment": "原文件大小"
  205. },
  206. {
  207. "name": "code_name",
  208. "type": "STRING",
  209. "comment": "原文件编码格式"
  210. },
  211. {
  212. "name": "video_collection_id",
  213. "type": "BIGINT",
  214. "comment": "用户的视频集编号"
  215. },
  216. {
  217. "name": "recommend_status",
  218. "type": "BIGINT",
  219. "comment": "推荐状态(0:未推荐,-6:待推荐,1:普通推荐,10:编辑推荐,-7:可搜索)"
  220. },
  221. {
  222. "name": "tag_count",
  223. "type": "BIGINT",
  224. "comment": "标签个数"
  225. },
  226. {
  227. "name": "stage_recommend_examine_status",
  228. "type": "BIGINT",
  229. "comment": "待推荐审核状态(0:待推荐未审,1:待推荐已审)"
  230. },
  231. {
  232. "name": "sensitive_status",
  233. "type": "BIGINT",
  234. "comment": "内容敏感状态(0:未检验,1:不敏感,2:敏感,3:敏感已审)"
  235. },
  236. {
  237. "name": "is_foreogn_bucket",
  238. "type": "BIGINT",
  239. "comment": "是否是存放在境外bucket,针对境外用户上传后转码前的地址"
  240. }
  241. ],
  242. "partition_keys": [],
  243. "dataworks_tasks": [
  244. {
  245. "id": 1000416062,
  246. "name": "imp.wx_video.wx_video"
  247. },
  248. {
  249. "id": 1000416062,
  250. "name": "imp.wx_video.wx_video"
  251. }
  252. ],
  253. "upstream_tables": []
  254. }