文档
测试

3、核安全排名列表

POST
SafetyOrderIndex.asmx/getSafetyData

接口描述

获取核安全数据

请求参数

参数名
类型
描述
必填
page
int
第几页
必填
limit
int
每页条数
必填
nodeId
int|string
树节点id
必填
date
string
时间:yyyy-MM
必填
nodeType
string
树节点类型
必填
token
必填

响应参数

参数名
类型
描述
必填
data
必填
safetyTableList
array
核安全数据,属性和说明如下
必填
msg
string
返回说明
必填
code
int
返回状态码
必填

说明 / 示例

### 接口说明 ```js { "safetyTableList": [ { "id": 3, "enterpriseid":"efc69f2e-e137-4425-adfb-7d14a58bcfa4" //企业编号 "enterprise": "企业名称",// 企业名称 "abnormalCount": 562,// 异常数量 "handleTime": 6, //处理平均时间 "supervisionCount": 22,// 督办数量 "score": 18// 得分 }, { "id": 2, "enterpriseid":"efc69f2e-e137-4425-adfb-7d14a58bcfa4" //企业编号 "enterprise": "企业名称",// 企业名称 "abnormalCount": 562,// 异常数量 "handleTime": 6, //处理平均时间 "supervisionCount": 22,// 督办数量 "score": 18// 得分 } ], total: 2 // 所有数据总数 } ```