{
  "openapi": "3.0.3",
  "info": {
    "title": "统计模块 - 站点数据 - 统计",
    "version": "1.0.0",
    "description": "统计模块相关接口文档"
  },
  "paths": {
    "/openapi/sites/statistics": {
      "get": {
        "summary": "站点数据 - 统计",
        "description": "返回站点记录数。必须提供有效的X-Site和X-System-Code header。",
        "parameters": [
          {
            "name": "X-Site",
            "in": "header",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "站点标识（必填）"
          },
          {
            "name": "X-System-Code",
            "in": "header",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "系统编码（必填）"
          }
        ],
        "responses": {
          "200": {
            "description": "成功响应",
            "content": {
              "application/json": {
                "example": {
                  "success": {
                    "code": "0000",
                    "message": "统计成功",
                    "data": {
                      "validCount": 10,
                      "totalCount": 10
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}