{
    "cols": [
        "string"
    ],
    "filters": [
        {
            "name": "string",
            "filterType": "GT",
            "filterValue": [
                "string"
            ]
        }
    ]
}curl --location --request POST '/public-api/data-source//token/' \
--header 'Content-Type: application/json' \
--data-raw '{
    "cols": [
        "string"
    ],
    "filters": [
        {
            "name": "string",
            "filterType": "GT",
            "filterValue": [
                "string"
            ]
        }
    ]
}'{
    "result": "ok",
    "response": {
        "columns": [
            "省",
            "性别",
            "订单数",
            "客单价"
        ],
        "total": 2,
        "count": 2,
        "data": [
            [
                "上海",
                "男",
                "5",
                "7"
            ],
            [
                "上海",
                "女",
                "6",
                "8"
            ]
        ]
    }
}