2.4.1.7.11. Customer(客户)

2.4.1.7.11.1. 查询列表(Customer关注客户)

调用接口:

属性
url/api/customer/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}"]] [["查询值", "运算符", "查询内容"]]

其中,运算符为MySQL比较运算符,支持一下几种:

运算符含义
=等于
>大于
\<小于
>=大于等于
\<=小于等于
!=或\<>不等于
LIKE或like包含

举例

  1. [["customer_id", "=", "1001"], ["customer_name", "LIKE", "智物联"]]

返回参数:

字段字段名称字段类型说明是否必传
code返回码Integer200:成功 500:失败
msg提示信息String
result结果Json

返回数据举例:

  1. {
  2. "code": 200,
  3. "msg": "success",
  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. "customer_id": 1001,
  15. "customer_name": "智物联",
  16. "description": "智物联-物联网平台",
  17. "secret": "5JHC",
  18. "exp_id": "zhiwulian.exp",
  19. "province": "广东省",
  20. "city": "深圳市",
  21. "address": "美声创谷春谷",
  22. "phone": "075523740592",
  23. "contact": "admin",
  24. "mobile": "13800138000",
  25. "email": "admin.mixlinker.com",
  26. "template": null
  27. "script": null,
  28. "reference": null,
  29. "created": "2018-09-18 17:42:50"
  30. }
  31. ]
  32. }
  33. }

2.4.1.7.11.2. 指定记录

调用接口:

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

请求参数:

字段字段名称字段类型说明是否必传
customer_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. "customer_id": 1001,
  9. "customer_name": "智物联",
  10. "description": "智物联-物联网平台",
  11. "secret": "5JHC",
  12. "exp_id": "zhiwulian.exp",
  13. "province": "广东省",
  14. "city": "深圳市",
  15. "address": "美声创谷春谷",
  16. "phone": "075523740592",
  17. "contact": "admin",
  18. "mobile": "13800138000",
  19. "email": "admin.mixlinker.com",
  20. "template": "",
  21. "script": "",
  22. "reference": "",
  23. "created": "2018-09-18 17:42:50"
  24. }
  25. }

2.4.1.7.11.3. EXP列表

调用接口:

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

请求参数:

字段字段名称字段类型说明是否必传

返回参数:

字段字段名称字段类型说明是否必传
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. {
  9. "exp_id": "develop.exp",
  10. "exp_name": "智物联"
  11. }
  12. ]
  13. }

2.4.1.7.11.4. 添加Customer

调用接口:

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

请求参数:

字段字段名称字段类型说明是否必传
customer_name客户名称String
description描述Text
secret管理密码String
exp_idEXP标识String
province省份String
city城市/地区String
address地址String
phone电话String
contact联系人String
mobile联系人手机String
email邮箱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.11.5. 编辑Customer

调用接口:

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

请求参数:

字段字段名称字段类型说明是否必传
customer_id客户标识String
customer_name客户名称String
description描述Text
secret管理密码String
exp_idEXP标识String
province省份String
city城市/地区String
address地址String
phone电话String
contact联系人String
mobile联系人手机String
email邮箱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.11.6. 删除Customer

调用接口:

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

请求参数:

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