💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
## **查询考勤记录 attendanceLogUrl** **接口描述** * 根据班级id或者学生、时间,查询考勤记录 **请求URL** * [xxx.com/xxx](http://xxx.com/xxx) **请求方式** * post **请求参数** | 参数名 | 类型 | 说明 | | --- | --- | --- | | deviceId | string | 设备序列号 | | month| string | 月份 格式:YYYY-MM(例:2019-07)| | dataType| string | 班级classId、学生studentId、学生卡号cardCode | | dataValue| string | id数值| **返回参数** | 参数名 | 类型 | 说明 | | --- | --- | --- | | status| string | 0,成功| **返回示例** ~~~ { "status":0, "msg":"获取数据成功", "data":[          {                     "studentId":"25880",                     "studentName":"张三",                     "cardCode":1234567890,                     "pictureUrls":["abc.com/2.jpg","abc.com/3.jpg"],                     "status":"1", //0正常考勤,1缺勤,2请假,3迟到,4早退                     "time":"1533729600", //刷卡时间                     "deviceId ":"1122", //刷卡设备                 },          {                     "studentId":"25880",                     "studentName":"张三",                     "cardCode":1234567890,                     "pictureUrls":["abc.com/2.jpg","abc.com/3.jpg"],                     "status":"1", //0正常考勤,1缺勤,2请假,3迟到,4早退                     "time":"1533729600", //刷卡时间                     "deviceId ":"1122", //刷卡设备                 }             ]         } ~~~