## 獲取學生列表
**簡要描述:**
* 獲取學生列表
**請求URL:**
* /student/findPage
**請求方式:**
* POST
**參數:**
| 參數名 | 必選 | 類型 | 說明 |
| --- | --- | --- | --- |
| school_id| 否 | number | 學校id |
| classes_id| 否| number | 班級id |
| keyword | 否 | string | 搜索關鍵字 |
| current_page| 否 | number | 當前頁 |
| per_page | 否 | number | 分頁查詢每頁數量 默認 10 |
**返回參數**
| 參數名 | 必選 | 類型 | 說明 |
| --- | --- | --- | --- |
| school_id| 否 | number | 學校id |
| classes_id| 否| number | 班級id |
| keyword | 否 | string | 搜索關鍵字 |
| card_code| 否 | number | ic卡號|
| card_code1| 否 | number | 備用卡|
| current_page| 否 | number | 當前頁 |
| per_page | 否 | number | 分頁查詢每頁數量 默認 10 |
| last_page| 否 | number | 總頁數 |
| total | 否 | number | 總數量|
| sort| 否 | string | 排序,數字越大越靠前 |
**返回示例**
~~~
{
"code": "200",
"msg": "success",
"data": {
"total": 5,
"per_page": 10,
"current_page": 1,
"last_page": 1,
"data": [
{
"id": "5",
"school_id": "1",
"classes_id": "1",
"wechat_student_userid": "f143c0c3d015beb507a4ffc67e20d4c1",
"name": "賈小帥帥",
"number": "",
"sex": "0",
"type": "0",
"address": "",
"face_url": "",
"baidu_face": "0",
"card_code": "",
"add_time": "2021-01-12 13:54:26"
},
{
"id": "6",
"school_id": "1",
"classes_id": "1",
"wechat_student_userid": "e64ee0e44ad909f2095c75007589a929",
"name": "小云云",
"number": "",
"sex": "0",
"type": "0",
"address": "",
"face_url": "",
"baidu_face": "0",
"card_code": "",
"add_time": "2021-01-12 13:54:26"
}
]
}
}
~~~