# 视频

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    时间戳:
      type: object
      properties:
        created_at:
          type: string
          title: 创建时间
        updated_at:
          type: string
          title: 更新时间
        deleted_at:
          type: string
          title: 删除时间
      x-apifox-orders:
        - created_at
        - updated_at
        - deleted_at
      required:
        - created_at
        - updated_at
        - deleted_at
      x-apifox-folder: ''
    视频:
      type: object
      properties:
        id:
          type: string
          title: 视频id
          description: 唯一标识符，可选自增/雪花/UUID/其他
        cover_url:
          type: string
          title: 封面
          description: 封面链接
        comment_count:
          type: integer
          title: 评论数
          description: 评论数量
        title:
          type: string
          title: 视频标题
          description: 视频标题
        user_id:
          type: string
          title: 视频作者
          description: 发表视频的用户唯一标识符
        video_url:
          type: string
          title: 视频
          description: 视频文件链接
        like_count:
          type: integer
          title: 点赞数
          description: 点赞数量
        visit_count:
          type: integer
          title: 访问量
          description: 视频访问量
        description:
          type: string
          title: 视频描述
          description: 视频描述
      x-apifox-orders:
        - id
        - user_id
        - video_url
        - cover_url
        - title
        - description
        - visit_count
        - like_count
        - comment_count
        - 01HM15HVMN5CG6G4D198Y910E1
      x-apifox-refs:
        01HM15HVMN5CG6G4D198Y910E1:
          $ref: '#/components/schemas/%E6%97%B6%E9%97%B4%E6%88%B3'
      required:
        - user_id
        - video_url
        - cover_url
        - like_count
        - comment_count
        - title
        - id
        - visit_count
        - description
      x-apifox-folder: ''
  securitySchemes: {}
servers:
  - url: http://localhost:10001
    description: 开发环境
  - url: localhost:8888
    description: 测试环境
  - url: https://14efdb6874148af54dd6c98f749a9412-app.1024paas.com/douyin
    description: 正式环境
security: []

```
