企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
## **获取学生考勤状态信息 getAttendenceStatusUrl** **接口描述** * 获取当天、当班次学生考勤数据列表 **请求URL** * [xxx.com/xxx](http://xxx.com/xxx) **请求方式** * GET **请求参数** | 参数名 | 类型 | 说明 | | --- | --- | --- | | deviceId | string | 设备序列号 | | type| string | 1当天考勤,2当班次考勤,默认1 | **返回参数** | 参数名 | 类型 | 说明 | | --- | --- | --- | | studentId| string | 学生id | | attendenceStatus| number| 学生考勤状态 0出勤,1迟到,2缺勤,3请假| **返回示例** ~~~ { "status": 0, "msg": "success", "data": [ { "studentId": "", "attendenceStatus": "" }, { "studentId": "", "attendenceStatus": "" } ] } ~~~