视频资源表:video_base
| key | 类型 | 示例 | 备注 |
|---|---|---|---|
| id | string | xxx | 视频 id |
| videoName | string | xxx | 视频名称 |
| imageUrl | string | /123/123.png | 预览图地址 |
| createTime | timeStemp | 170000000 | 创建时间 |
| duration | number | 500 | 视频时长 |
视频资源详情表:video_detail
| key | 类型 | 示例 | 备注 |
|---|---|---|---|
| id | string | xxx | 视频 id |
| description | string | 描述xxx | 描述 |
| timeDescription | array | [{ time: 123, description: xxx }] | 时段描述 |
| resourceUrl | string | /123/123 | 资源地址 |
| imageUrls | string[] | [/123/123] | 预览图地址数组 |
| playNum | number | 50 | 播放量 |
| favoriteNum | number | 50 | 收藏量 |
标签表:tag
| key | 类型 | 示例 | 备注 |
|---|---|---|---|
| id | string | xxx | 标签 id |
| name | string | xxx | 标签名称 |
| count | int | xxx | 标签下视频数量 |
视频标签关系表:video_tag
| key | 类型 | 示例 | 备注 |
|---|---|---|---|
| tagIds | string[] | xxx | 标签 id 数组 |
| videoId | string | xxx | 视频 id |