• 2.4.1.7.22. Service(服务)
    • 2.4.1.7.22.1. 查询Service列表(关注设备或关注客户或无设备ID)
    • 2.4.1.7.22.2. 查询Service指定记录
    • 2.4.1.7.22.3. 查询Service列表(EXP使用:关注设备)
    • 2.4.1.7.22.4. 添加service
    • 2.4.1.7.22.5. 编辑service
    • 2.4.1.7.22.6. 删除service

    2.4.1.7.22. Service(服务)

    2.4.1.7.22.1. 查询Service列表(关注设备或关注客户或无设备ID)

    调用接口:

    属性
    url/api/service/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
    is_all是否返回所有数据Boolean1:是,0:否;如果为空,则默认0

    condition参数:

    格式

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

    举例

    1. [["service_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": 1,
    12. "data": [
    13. {
    14. "service_id": 1001,
    15. "service_name": "施工服务",
    16. "date": "2018-11-30 09:16:18",
    17. "category": "",
    18. "description": null,
    19. "customer_id": 1001,
    20. "equipment_id": 1001,
    21. "staff": "",
    22. "attachment": "",
    23. "template": null,
    24. "script": null,
    25. "reference": "",
    26. "created": "2018-11-30 09:16:52",
    27. "is_available": 1
    28. }
    29. ]
    30. }
    31. }

    2.4.1.7.22.2. 查询Service指定记录

    调用接口:

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

    请求参数:

    字段字段名称字段类型说明是否必传
    service_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. "service_id": 1001,
    9. "service_name": "施工服务",
    10. "date": "2018-11-30 09:16:18",
    11. "category": "",
    12. "description": null,
    13. "customer_id": 1001,
    14. "equipment_id": 1001,
    15. "staff": "",
    16. "attachment": "",
    17. "template": null,
    18. "script": null,
    19. "reference": "",
    20. "created": "2018-11-30 09:16:52",
    21. "is_available": 1
    22. }
    23. }

    2.4.1.7.22.3. 查询Service列表(EXP使用:关注设备)

    调用接口:

    属性
    url/api/exp/service/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

    返回参数:

    字段字段名称字段类型说明是否必传
    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": 0,
    12. "data": []
    13. }
    14. }

    2.4.1.7.22.4. 添加service

    调用接口:

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

    请求参数:

    字段字段名称字段类型说明是否必传
    service_name服务名称String
    date服务时间datetime
    category服务类型String
    description描述Text
    customer_id客户标识String
    equipment_id设备标识String
    staff服务人员String
    attachment服务附件路径String
    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.22.5. 编辑service

    调用接口:

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

    请求参数:

    字段字段名称字段类型说明是否必传
    service_id服务标识String
    service_name服务名称String
    date服务时间datetime
    category服务类型String
    description描述Text
    customer_id客户标识String
    staff服务人员String
    attachment服务附件路径String
    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.22.6. 删除service

    调用接口:

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

    请求参数:

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