{
  "openapi": "3.0.3",
  "info": {
    "title": "系统管理 - 客户端用户存储模式切换",
    "version": "1.0.0",
    "description": "系统管理相关接口文档"
  },
  "paths": {
    "/system/storage/client/switch": {
      "post": {
        "summary": "客户端用户存储模式切换",
        "description": "客户端用户存储模式切换功能",
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "mode": {
                    "type": "string",
                    "description": "string｜必填，目标存储模式，可选 'FILE' 或 'CLOUD'"
                  }
                },
                "required": [
                  "mode"
                ]
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "成功响应",
            "content": {
              "application/json": {
                "example": {
                  "success": {
                    "code": "0000",
                    "message": "切换客户端用户存储模式成功",
                    "data": {
                      "mode": "FILE"
                    }
                  },
                  "failure": {
                    "code": "4000",
                    "message": "切换客户端用户存储模式失败",
                    "data": null
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}