系统消息记录
# 系统消息记录
### 请求地址
```
http://site.wan911.com/api/chat/
```
### 请求参数
| 参数名 | 类型 | 说明 | 是否必填 |
|--------|-----|------|---------|
| active_class | string | 固定值:ChatSysMessagePage | 是 |
| active_method | string | 固定值:SysRecords | 是 |
| token | string | 令牌 | 是 |
| uid | string | 当前登录人uid | 是 |
| pageIndex | int | 页码 | 是,默认1 |
| pageSize | int | 条数 | 否,默认20条 |
### 返回值
``` json
{
"IsSuccess":true,
"Message":"成功",
"ClientData":[
{
"xy_rid":100,//消息id
"xy_userface":"xxx",//头像
"xy_content":"", //内容
"created_time":"yyyy-MM-dd HH:mm:ss",//发送的时间
}],
"Total":0
}
```