2.4.1.7.13. Datasheet(数据表)

2.4.1.7.13.1. 查询Datasheet详细列表

调用接口:

属性
url/api/datasheet/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. [["datasheet_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. "datasheet_id": 1002,
  15. "datasheet_name": "深海捷",
  16. "description": null,
  17. "file": null,
  18. "template": null,
  19. "script": null,
  20. "reference": null,
  21. "created": "2018-09-20 20:18:48",
  22. "is_available": 1,
  23. "boss_sync": 0
  24. },
  25. {
  26. "datasheet_id": 1001,
  27. "datasheet_name": "智物联",
  28. "description": null,
  29. "file": null,
  30. "template": null,
  31. "script": null,
  32. "reference": null,
  33. "created": "2018-09-18 19:46:47",
  34. "is_available": 1,
  35. "boss_sync": 0
  36. }
  37. ]
  38. }
  39. }

2.4.1.7.13.2. 查询Datasheet指定记录

调用接口:

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

请求参数:

字段字段名称字段类型说明是否必传
datasheet_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. "datasheet_id": 1002,
  9. "datasheet_name": "深海捷",
  10. "description": null,
  11. "file": null,
  12. "template": null,
  13. "script": null,
  14. "reference": null,
  15. "created": "2018-09-20 20:18:48",
  16. "is_available": 1,
  17. "boss_sync": 0
  18. }
  19. }

2.4.1.7.13.3. 添加Datasheet

调用接口:

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

请求参数:

字段字段名称字段类型说明是否必传
datasheet_name数据表名称String
description描述Text
file数据表文件路径
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.13.4. 编辑Datasheet

调用接口:

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

请求参数:

字段字段名称字段类型说明是否必传
datasheet_id数据表标识String
datasheet_name数据表名称String
description描述Text
file数据表文件路径
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.13.5. 删除Datasheet

调用接口:

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

请求参数:

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