{
  "openapi": "3.0.3",
  "info": {
    "title": "系统管理 - 系统信息",
    "version": "1.0.0",
    "description": "系统管理相关接口文档"
  },
  "paths": {
    "/system/info": {
      "get": {
        "summary": "系统信息",
        "description": "获取系统基本信息",
        "responses": {
          "200": {
            "description": "成功响应",
            "content": {
              "application/json": {
                "example": {
                  "success": {
                    "code": "0000",
                    "message": "获取成功",
                    "data": {
                      "version": "1.0.0",
                      "buildTime": "2025-01-01T10:00:00.000Z",
                      "storageMode": "FILE"
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}