• 2.4.1.7.25. Statos(统计计算结果)
    • 2.4.1.7.25.1. 查询Statos列表
    • 2.4.1.7.25.2. 查询Statos指定记录
    • 2.4.1.7.25.3. 添加Statos
    • 2.4.1.7.25.4. 编辑Statos
    • 2.4.1.7.25.5. 删除Statos

    2.4.1.7.25. Statos(统计计算结果)

    2.4.1.7.25.1. 查询Statos列表

    调用接口:

    属性
    url/api/statos/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. [["statos_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. "statos_id": 1001,
    15. "statos_name": "GasElectricityRatioKaiJiaSuYe Every Hour Calculate",
    16. "description": "Every Hour (14) Calculate",
    17. "statistics_id": "GasElectricityRatioKaiJiaSuYe",
    18. "equipment_id": 1020,
    19. "data": "0.0936",
    20. "template": null,
    21. "script": null,
    22. "reference": "",
    23. "year": 2018,
    24. "month": 11,
    25. "day": 30,
    26. "hour": 14,
    27. "created": "2018-11-30 15:06:00",
    28. "is_available": 1,
    29. "boss_sync": 0
    30. }
    31. ]
    32. }
    33. }

    2.4.1.7.25.2. 查询Statos指定记录

    调用接口:

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

    请求参数:

    字段字段名称字段类型说明是否必传
    statos_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. "statos_id": 1001,
    9. "statos_name": "GasElectricityRatioKaiJiaSuYe Every Hour Calculate",
    10. "description": "Every Hour (14) Calculate",
    11. "statistics_id": "GasElectricityRatioKaiJiaSuYe",
    12. "equipment_id": 1020,
    13. "data": "0.0936",
    14. "template": null,
    15. "script": null,
    16. "reference": "",
    17. "year": 2018,
    18. "month": 11,
    19. "day": 30,
    20. "hour": 14,
    21. "created": "2018-11-30 15:06:00",
    22. "is_available": 1,
    23. "boss_sync": 0
    24. }
    25. }

    2.4.1.7.25.3. 添加Statos

    调用接口:

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

    请求参数:

    字段字段名称字段类型说明是否必传
    statos_name统计结果名称String
    description描述Text
    statistics_id统计计算标识String
    equipment_id设备标识String
    data采集数据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.25.4. 编辑Statos

    调用接口:

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

    请求参数:

    字段字段名称字段类型说明是否必传
    statos_id统计结果标识String
    statos_name统计结果名称String
    description描述Text
    statistics_id统计计算标识String
    equipment_id设备标识String
    data采集数据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.25.5. 删除Statos

    调用接口:

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

    请求参数:

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