## 获取留言消息列表
**简要描述:**
* 获取留言消息列表
**请求URL:**
* /chat/findPage
**请求方式:**
* POST
**参数:**
| 参数名 | 必选 | 类型 | 说明 |
| --- | --- | --- | --- |
| school_id| 是 | int | 学校id |
| classes_id| 是 | int | 班级id |
| receiver_id| 是 | int | 接收者id |
| sender_id| 是| int | 发送者id |
| last_id| 否 | int | 最后一条记录id |
| per_page| 否| int | 每页记录数 |
**返回参数老师**
| 参数名 | 必选 | 类型 | 说明 |
| --- | --- | --- | --- |
| id| 是 | int |消息记录id|
| sender_face_url| 是| string | 发送者头像 |
| sender_id| 是| int | 发送者id |
| receiver_id| 是| int | 接收者id |
| message_type| 是| string| 消息类别 默认文本 1声音 0文本 |
| message_content| 是 | string| 消息内容 |
| add_time| 是 | string | 发送时间 |
| sender_type| 是| int | 发送者类别 1家长 2学生 |
| receiver_type| 是| int | 接收者类别 1家长 2学生 |
**返回示例**
```
{
"code": "200",
"msg": "success",
"data": [
{
"id": "1580",
"sender_face_url": "https://d8y10GcxdtA.jpg",
"sender_id": "1",
"receiver_id": "1",
"message_type": "0",
"message_content": "通知呢",
"add_time": "2021-03-16 10:10:49",
"sender_type": "2",
"receiver_type": "1"
}
]
}
```