2.4.1.7.20. Message(消息)

2.4.1.7.20.1. 查询Message列表

调用接口:

属性
url/api/message/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. [["message_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. "message_id": 1009,
  15. "message_name": "适配器离线",
  16. "date": null,
  17. "category": "AprusDisconnect",
  18. "unit": "gards",
  19. "messenger": "A22018083100002",
  20. "description": "",
  21. "customer_id": null,
  22. "template": null,
  23. "script": null,
  24. "reference": "",
  25. "created": "2018-09-03 18:46:26",
  26. "is_available": 1
  27. }
  28. ]
  29. }
  30. }

2.4.1.7.20.2. 查询Message指定记录

调用接口:

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

请求参数:

字段字段名称字段类型说明是否必传
message_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. "message_id": 1009,
  9. "message_name": "适配器离线",
  10. "date": null,
  11. "category": "AprusDisconnect",
  12. "unit": "gards",
  13. "messenger": "A22018083100002",
  14. "description": "",
  15. "customer_id": null,
  16. "template": null,
  17. "script": null,
  18. "reference": "",
  19. "created": "2018-09-03 18:46:26",
  20. "is_available": 1
  21. }
  22. }

2.4.1.7.20.3. 添加Message

调用接口:

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

请求参数:

字段字段名称字段类型说明是否必传
message_name消息摘要或标题String
date消息时间datetime
category消息类型String
unit消息来源分类String
messenger消息来源String
description描述Text
customer_id客户标识String
template模板/样式text
script脚本text
reference参考号String
is_available是否有效Boolean1:是,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. }

2.4.1.7.20.4. 编辑Message

调用接口:

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

请求参数:

字段字段名称字段类型说明是否必传
message_id消息标识String
message_name消息摘要或标题String
date消息时间datetime
category消息类型String
unit消息来源分类String
messenger消息来源String
description描述Text
customer_id客户标识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.20.5. 删除Message

调用接口:

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

请求参数:

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