- 加密模式
- EServiceVisitorResource
- 审批白名单接口
- 一卡通绑定接口信息
- h5菜单接口
- 用户信息
- 尊E享用户管理列表
- 预约讲解点位
- 讲解员管理
- 参观点位配置
- 预约讲解白名单
- 创建预约单
- h5 预约讲解接口
- h5预约讲解接口
- 缴费单接口
- 通知单设置
- 抄表点位
- app 接口 能源
- 费用设置
- 能源费用设置
- MServiceCenterResource
- 抄表计划
- 抄表任务
- app接口
- api
- 货梯登记
- 货梯记录
- h5货梯接口
- 访客管理.
- APP Token endpoint - used by the client to exchange an authorization grant for an
列表
POST
/ene007/table
请求参数
Body 参数application/json
pageSize
integer | null
可选
offset
integer | null
可选
pageNumber
integer | null
可选
draw
integer | null
可选
columns
array[object (DataTableColumn) {4}] | null
可选
name
string | null
可选
searchText
string | null
可选
searchType
string | null
可选
orderType
string | null
可选
sort
array[object (Sort) {4}] | null
可选
direction
enum<string> | enum<null>
可选
枚举值:
ASCDESC
property
string | null
可选
ignoreCase
boolean | null
可选
nullHandling
enum<string> | enum<null>
可选
枚举值:
NATIVENULLS_FIRSTNULLS_LAST
conditions
array[object (DataTableConditions) {3}] | null
可选
field
string | null
字段
opt
string | null
比较类型
values
array [object] | null
多个值
示例
{
"pageSize": 0,
"offset": 0,
"pageNumber": 0,
"draw": 0,
"columns": [
{
"name": "string",
"searchText": "string",
"searchType": "string",
"orderType": "string"
}
],
"sort": [
{
"direction": "ASC",
"property": "string",
"ignoreCase": true,
"nullHandling": "NATIVE"
}
],
"conditions": [
{
"field": "string",
"opt": "string",
"values": [
{}
]
}
]
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'http://test-cn.your-api-server.com/ene007/table' \
--header 'Content-Type: application/json' \
--data-raw '{
"pageSize": 0,
"offset": 0,
"pageNumber": 0,
"draw": 0,
"columns": [
{
"name": "string",
"searchText": "string",
"searchType": "string",
"orderType": "string"
}
],
"sort": [
{
"direction": "ASC",
"property": "string",
"ignoreCase": true,
"nullHandling": "NATIVE"
}
],
"conditions": [
{
"field": "string",
"opt": "string",
"values": [
{}
]
}
]
}'
返回响应
🟢200成功
application/json
Body
data
array[object (EnergyPlanTableDTO) {7}] | null
可选
id
integer | null
可选
code
string | null
编码
name
string | null
姓名
type
integer | null
类型
meterReadingPersonnel
string | null
抄表人员
cycle
integer | null
周期
activated
boolean | null
已激活
total
integer | null
可选
filtered
integer | null
可选
pageNumber
integer | null
可选
draw
integer | null
可选
recordsFiltered
integer | null
可选
recordsTotal
integer | null
可选
示例
{
"data": [
{
"id": 0,
"code": "",
"name": "",
"type": 0,
"meterReadingPersonnel": "",
"cycle": 0,
"activated": false
}
],
"total": 0,
"filtered": 0,
"pageNumber": 0,
"draw": 0,
"recordsFiltered": 0,
"recordsTotal": 0
}
修改于 2024-06-14 07:52:35