• 2.4.1.7.9. Common(公共接口)
    • 2.4.1.7.9.1. 查询故障、报警、事件-详细列表

    2.4.1.7.9. Common(公共接口)

    2.4.1.7.9.1. 查询故障、报警、事件-详细列表

    调用接口:

    属性
    url/api/common/get_all_warn
    http方法post
    Content-Typeapplication/json或application/x-www-form-urlencoded

    请求参数:

    字段字段名称字段类型说明是否必传
    page_index查询页码Integer大于 0,如果为空,则默认从第一页显示
    page_size每页记录数Integer大于 0,如果为空,则默认为 20
    condition查询条件JsonLIKE模糊搜索条件
    start_time开始时间Datetime按创建时间搜索的开始时间和结束时间
    end_time结束时间Datetime
    is_group是否查询设备组Boolean不传则返回所有数据; 值为1则只返回设备组数据; 值为0则只返回设备数据

    返回参数:

    字段字段名称字段类型说明是否必传
    code返回码Integer200:成功 500:失败
    msg提示信息String
    result结果Json

    返回数据举例:

    1. {
    2. "code": 200,
    3. "msg": "查询成功",
    4. "mix_code":130001,
    5. "mix_msg":"",
    6. "mix_ext":"",
    7. "result": {
    8. "page_index": 1,
    9. "page_size": 20,
    10. "total_pages": 1,
    11. "total_records": 1,
    12. "data": [
    13. {
    14. "id": 1002,
    15. "name": "锅炉过热",
    16. "type": "alert",
    17. "type_name": "报警",
    18. "code": "9527",
    19. "aprus_id": "A22018083100002",
    20. "equipment_id": 1001,
    21. "equipment_name": "pro+测试设备",
    22. "description": "Label_En:Oil Separator Blocked;Label_Cn:锅炉过热",
    23. "created": "2018-09-11 17:03:07",
    24. "is_available": 1
    25. }
    26. ]
    27. }
    28. }