文档
测试

获取客服信息

GET
/app/customer-service/getCustomer

请求头

参数名
类型
描述
必填
token
String
必填

请求参数

参数名
类型
描述
必填
id
int
客服id
必填

响应参数

参数名
类型
描述
必填
code
int
状态码 0 成功 其他失败
必填
msg
String
响应信息
必填
obj
Object
客服信息
必填

说明 / 示例

## `返回示例` ```java { "code": 0, "msg": "请求成功", "obj": { "id": 26, "account": "123456789", "password": "123456", "createdTime": "2020-07-07 14:14:29", "createdBy": null, "updatedTime": "2020-07-15 19:08:11", "updatedBy": null, "status": 0, "realName": "小黄", "tel": "15812345678", "level": 1, "workingStatus": 0, "jgId": "15812345678ps16", "jgPwd": "123456", "lineStatus": 0 } } ```