# 用户

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    用户:
      type: object
      properties:
        id:
          type: string
          title: 用户 ID
          description: 用户唯一标识符
        username:
          type: string
          title: 用户名
        password:
          type: string
          title: 密码
          description: 需要进行加密（bcrypt）
        avatar_url:
          type: string
          title: 头像
          description: 图片链接，可以是本地也可以是云存储
      x-apifox-orders:
        - id
        - username
        - password
        - avatar_url
        - 01HM14S7N3KBVF33DX8RVKQ2AN
      required:
        - id
        - username
        - password
        - avatar_url
      x-apifox-refs:
        01HM14S7N3KBVF33DX8RVKQ2AN:
          $ref: '#/components/schemas/%E6%97%B6%E9%97%B4%E6%88%B3'
          x-apifox-overrides: {}
      x-apifox-folder: ''
    时间戳:
      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: ''
  securitySchemes: {}
servers:
  - url: http://localhost:10001
    description: 开发环境
  - url: localhost:8888
    description: 测试环境
  - url: https://14efdb6874148af54dd6c98f749a9412-app.1024paas.com/douyin
    description: 正式环境
security: []

```
