• 2.4.1.7.18. FaultMosaic(故障挂板)
    • 2.4.1.7.18.1. 查询FaultMosaic列表
    • 2.4.1.7.18.2. 查询FaultMosaic指定记录
    • 2.4.1.7.18.3. 查询指定设备挂板列表
    • 2.4.1.7.18.4. 查询关注设备挂板列表
    • 2.4.1.7.18.5. 添加fault_mosaic
    • 2.4.1.7.18.6. 编辑fault_mosaic
    • 2.4.1.7.18.7. 删除fault_mosaic

    2.4.1.7.18. FaultMosaic(故障挂板)

    2.4.1.7.18.1. 查询FaultMosaic列表

    调用接口:

    属性
    url/api/fault_mosaic/get_list
    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

    condition参数:

    格式

    1. [["${key}", "${operator}",{value}"]] 即 [["查询值", "运算符", "查询内容"]]

    举例

    1. [["equipment_id", "=", "1001"]]

    返回参数:

    字段字段名称字段类型说明是否必传
    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": 2,
    12. "data": [
    13. {
    14. "equipment_id": 1007,
    15. "fault_mosaic": {
    16. "7603": [
    17. "1002",
    18. "减速过电流"
    19. ]
    20. },
    21. "template": null,
    22. "script": null,
    23. "reference": "",
    24. "created": "2018-09-11 16:54:13",
    25. "is_available": 1
    26. },
    27. {
    28. "equipment_id": 1005,
    29. "fault_mosaic": {
    30. "7493": [
    31. "1001",
    32. "速度反馈错误"
    33. ]
    34. },
    35. "template": "",
    36. "script": "",
    37. "reference": "",
    38. "created": "2018-09-11 16:52:04",
    39. "is_available": 1
    40. }
    41. ]
    42. }
    43. }

    2.4.1.7.18.2. 查询FaultMosaic指定记录

    调用接口:

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

    请求参数:

    字段字段名称字段类型说明是否必传
    equipment_id设备标识String

    返回参数:

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

    返回示例:

    1. {
    2. "code": 200,
    3. "msg": "查询成功",
    4. "result": {
    5. "equipment_id": 1007,
    6. "fault_mosaic": {
    7. "7603": [
    8. "1002",
    9. "减速过电流"
    10. ]
    11. },
    12. "template": null,
    13. "script": null,
    14. "reference": "",
    15. "created": "2018-09-11 16:54:13",
    16. "is_available": 1
    17. }
    18. }

    2.4.1.7.18.3. 查询指定设备挂板列表

    调用接口:

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

    请求参数:

    字段字段名称字段类型说明是否必传
    equipment_id设备标识String
    page_index查询页码Integer大于 0,如果为空,则默认从第一页显示
    page_size每页记录数Integer大于 0,如果为空,则默认为 20

    返回参数:

    字段字段名称字段类型说明是否必传
    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. "fault_id": 1001,
    15. "code": "7493",
    16. "fault_name": "速度反馈错误",
    17. "description": "Label_En:Speed Feedback Error;Label_Cn:速度反馈错误",
    18. "aprus_id": "A22018083100002",
    19. "equipment_id": 1001,
    20. "template": "",
    21. "script": "",
    22. "reference": "",
    23. "created": "2018-09-03 15:43:32",
    24. "is_available": 1
    25. }
    26. ]
    27. }
    28. }

    2.4.1.7.18.4. 查询关注设备挂板列表

    调用接口:

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

    请求参数:

    字段字段名称字段类型说明是否必传
    page_index查询页码Integer大于 0,如果为空,则默认从第一页显示
    page_size每页记录数Integer大于 0,如果为空,则默认为 20
    is_all是否返回所有数据Boolean1:是,0:否;如果为空,则默认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. "fault_id": 1001,
    15. "code": "7493",
    16. "fault_name": "速度反馈错误",
    17. "description": "Label_En:Speed Feedback Error;Label_Cn:速度反馈错误",
    18. "aprus_id": "A22018083100002",
    19. "equipment_id": 1001,
    20. "template": "",
    21. "script": "",
    22. "reference": "",
    23. "created": "2018-09-03 15:43:32",
    24. "is_available": 1
    25. }
    26. ]
    27. }
    28. }

    2.4.1.7.18.5. 添加fault_mosaic

    调用接口:

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

    请求参数:

    字段字段名称字段类型说明是否必传
    equipment_id设备标识String
    fault_mosaic故障标识集合Json
    template模板/样式String
    script脚本String
    reference参考号String

    返回参数:

    字段字段名称字段类型说明是否必传
    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. }

    2.4.1.7.18.6. 编辑fault_mosaic

    调用接口:

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

    请求参数:

    字段字段名称字段类型说明是否必传
    equipment_id设备标识String
    fault_mosaic故障标识集合Text
    template模板/样式text
    script脚本text
    reference参考号String

    返回参数:

    字段字段名称字段类型说明是否必传
    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. }

    2.4.1.7.18.7. 删除fault_mosaic

    调用接口:

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

    请求参数:

    字段字段名称字段类型说明是否必传
    equipment_id设备标识String

    返回参数:

    字段字段名称字段类型说明是否必传
    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. }