文档
测试

7.1、获取异常通知配置列表

POST
AlarmNoticeLst.asmx/getAlarmNoticeLst

请求参数

参数名
类型
描述
必填
page
int
第几页
必填
limit
int
每页条数
必填
nodeId
int|string
树节点id
必填
token
string
必填

响应参数

参数名
类型
描述
必填
data
必填
supervisionTableList
array
异常督办列表数据,属性和说明如下
必填
msg
string
返回说明
必填
code
int
返回状态码
必填

说明 / 示例

### 接口说明 ```js { code: 200, data: { "AlarmNoticeList": [ { "id": 14, "noticePerson": "某人",//通知人员 "noticePhone": "1041293129",//通知手机 "acceptScope": "xxxxxxxxx",//接受范围 "abnormalType": "XXXXxX",//异常类型 } ], total: 2 // 所有数据总数 }, msg: 'xxx' } ``` 数据为空时 ``` { code: 200, data: { "AlarmNoticeList": [], total: 0 // 所有数据总数 }, msg: 'xxx' } ```