接口说明
### 接口地址
**财富真相:**`http://120.76.194.28:8080/im/`
**鑫汇客:**`http://xhk.kaxinkeji.com:8080/im/`
- 普通接口地址`/api/`
- 推送接口地址`/api-push/`
### token说明
请求头带token字段的接口需要先登录获取token
### **接口返回结果说明:**
#### 操作成功示例:
```json
{
"code": 1,
"msg": "操作成功",
"result": {},
"errors": {}
}
```
#### 操作失败示例:
##### 参数校验失败
```json
{
"code": 0,
"msg": "操作失败",
"result": {},
"errors": {
"message": "姓名不能为空" //失败原因
}
}
```
##### 无权限
```json
{
"code": 0,
"msg": "操作失败",
"result": {},
"errors": {
"message": "无token,请重新登录"
}
}
```
#### 重复提交:
```json
{
"code": -1,
"msg": "重复提交",
"result": {},
"errors": {}
}
```