2.4.1.7.5. Aprus(适配器)

2.4.1.7.5.1. 查询Aprus详细列表

调用接口:

属性
url/api/aprus/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. [["aprus_id", "like", "fidiser"], ["aprus_name", "=", "专用适配器"]]

返回参数:

字段字段名称字段类型说明是否必传
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. "aprus_id": "A201812060003",
  15. "aprus_name": "空压机-0766",
  16. "access": "pub",
  17. "topic": "r,a,v,p,i,n,d",
  18. "description": "无",
  19. "maker": "智物联",
  20. "config_id": 1002,
  21. "codebase_id": 1001,
  22. "nominal": null,
  23. "activated": "2018-08-31 16:37:39",
  24. "type": "2",
  25. "template": null,
  26. "script": null,
  27. "reference": null,
  28. "created": "2018-08-31 16:37:39",
  29. "is_available": 1
  30. }
  31. ]
  32. }
  33. }

2.4.1.7.5.2. 查询Aprus指定记录

调用接口:

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

请求参数:

字段字段名称字段类型说明是否必传
aprus_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. "aprus_id": "A201812060003",
  9. "aprus_name": "空压机-0766",
  10. "access": "pub",
  11. "topic": "r,a,v,p,i,n,d",
  12. "description": "无",
  13. "maker": "智物联",
  14. "config_id": 1002,
  15. "codebase_id": 1001,
  16. "nominal": null,
  17. "activated": "2018-08-31 16:37:39",
  18. "type": "2",
  19. "template": null,
  20. "script": null,
  21. "reference": null,
  22. "created": "2018-08-31 16:37:39",
  23. "is_available": 1
  24. }
  25. }

2.4.1.7.5.3. 添加Aprus

调用接口:

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

请求参数:

字段字段名称字段类型说明是否必传
aprus_id适配器标识String
aprus_name适配器名称String
description描述Text
username鉴权用户名String
pin鉴权验证码String
access报文权限String单选:all,pub,sub
topic报文主题String多选: all:all pub:r,a,v,p,i,n sub:g/#
maker生产厂家String
config_id适配器配置标识String对应config表
codebase_id代码库String对应codebase
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.5.4. 编辑Aprus

调用接口:

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

请求参数:

字段字段名称字段类型说明是否必传
aprus_id适配器标识String
aprus_name适配器名称String
description描述Text
username鉴权用户名String
pin鉴权验证码String
access报文权限String单选:all,pub,sub
topic报文主题String多选: all:all pub:r,a,v,p,i,n sub:g/#
description描述text
maker生产厂家String
config_id适配器配置标识String对应config表
codebase_id代码库String对应codebase
nominal公称名义String不可编辑
activated激活时间datetime不可编辑
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.5.5. 删除Aprus

调用接口:

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

请求参数:

字段字段名称字段类型说明是否必传
aprus_id适配器标识String

返回参数:

字段字段名称字段类型说明是否必传
code返回码Integer200:成功 500:失败
msg提示信息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. }