POST DataCenter/ExportDataRecord
根据查询条件导出基础档案/报表的数据列表,不支持分页,及导出全部。
请求信息
请求URI参数
无
请求数据参数
查询条件
ConditionInfo| 名称 | 说明 | 类型 | 扩展说明 |
|---|---|---|---|
| key |
档案关键字 |
字符串 |
无 |
| condition |
档案过滤条件 |
Collection of QueryItemInfo |
无 |
| page_size |
分页大小 |
整数 |
无 |
| page_index |
分页页码 |
整数 |
无 |
请求数据格式
application/json, text/json
例子:
{
"key": "sample string 1",
"condition": [
{
"mode": 1,
"title": "sample string 2",
"tooltip": "sample string 3",
"map": "sample string 4",
"logic": "sample string 5",
"value": "sample string 6",
"format": "sample string 7",
"source": [
{
"key": "sample string 1",
"value": "sample string 2"
},
{
"key": "sample string 1",
"value": "sample string 2"
}
]
},
{
"mode": 1,
"title": "sample string 2",
"tooltip": "sample string 3",
"map": "sample string 4",
"logic": "sample string 5",
"value": "sample string 6",
"format": "sample string 7",
"source": [
{
"key": "sample string 1",
"value": "sample string 2"
},
{
"key": "sample string 1",
"value": "sample string 2"
}
]
}
],
"page_size": 2,
"page_index": 3
}
响应数据
资源说明
excel文档下载路径
ResultInfoOfString| 名称 | 说明 | 类型 | 扩展说明 |
|---|---|---|---|
| code | ResultCode |
无 |
|
| msg | 字符串 |
无 |
|
| data | 字符串 |
无 |
响应数据格式
application/json, text/json
例子:
{
"code": "SUCCESS",
"msg": "sample string 1",
"data": "sample string 2"
}