ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
## **获取班级优秀学生接口 getGoodStudentUrl** **接口描述** * 获取班级优秀学生接口 **请求URL** * [xxx.com/xxx](http://xxx.com/xxx) **请求方式** * GET **请求参数** | 参数名 | 是否必选| 类型 | 说明 | | --- | --- | --- |--- | | deviceId |是 | string | 设备序列号 | | currentPage| 否 | number | 当前页默认1,不传返回全部 | | pageSize | 否|number|每页数量,默认10| **返回参数** | 参数名 | 类型 | 说明 | | --- | --- | --- | | studentId| string | 学生id | |goodStudentType| string | 优秀类型 | |goodStudentInfo| string | 表扬语 | | addTime| number| 获得表扬时间 | | list | array | 数据列表 | | total | number | 总数量 | | totalPage | number | 总页数 | | pageSize |number|每页数量| | currentPage| number | 当前页 | **返回示例** 新接口 ~~~ { "status": 0, "msg": "success", "data":{ "total":"1", "currentPage":"1", "totalPage":"1", "pageSize":"10", "list":[ { "id":"", "studentId":"", "goodStudentType":"", "goodStudentInfo":"", "addTime":"" }, { "id":"", "studentId":"", "goodStudentType":"", "goodStudentInfo":"", "addTime":"" } ] } } ~~~ 以下是老接口 ~~~ { "status":0, "msg":"获取数据成功", "serverTime":"1286676610", "data":{ "total":"1", "currentPage":"1", "totalPage":"1", "pageSize":"10", "list":[ { "id":"", "studentId":"", "studentName":"", "faceUrl":"", "goodStudentType":"", "goodStudentInfo":"", "addTime":"" }, { "id":"", "studentId":"", "studentName":"", "faceUrl":"", "goodStudentType":"", "goodStudentInfo":"", "addTime":"" } ] } } ~~~