数据分析接口(报表)
POST
/api/bigdata/analysis/service/chart/data
大数据
请求参数
Body 参数application/json
type
integer
必需
analysisId
string
分析图表的唯一id
conditions
array [object {6}]
筛选条件
table
string
表id
field
string
字段id
type
string
字段类型
value
array [object {3}]
筛选条件的值
symbol
string
筛选条件的计算符号
title
string
字段名称
示例
{
"type": 0,
"analysisId": "string",
"conditions": [
{
"table": "string",
"field": "string",
"type": "string",
"value": [
{
"value": "string",
"minValue": "string",
"maxValue": "string"
}
],
"symbol": "string",
"title": "string"
}
]
}
返回响应
🟢200成功
application/json
Body
list
object
必需
columns
array [object {2}]
报表列
source
array[string]
报表数据
示例
{
"list": {
"columns": [
{
"field": "",
"title": ""
}
],
"source": [
"string"
]
}
}
修改于 2023-04-20 01:29:19