[
{
"deptId": 1203, //科室id
"userId": 22, //学员id
"detailList": [
{
"id":449, //数据id
"attendanceDate":"2024-03-25", //考勤日期
"attendanceStatus": 6, //学生考勤状态 1、正常 2、请假 5、旷工 6、异常
"teachAttendanceStatus":4 //上报考勤状态 1、正常 3、早退 4、迟到 5、旷工
}
] //上报考勤详情
}
]
curl --location --request POST 'localhost:8077/attendance/studentAttendanceRecord/attendanceReport' \
--header 'token: undefined' \
--header 'roleId: {{stuRoleId}}' \
--header 'channel: 2' \
--header 'Authorization: Bearer e04bc2ccd70847efbd8b3775fb951f4e' \
--header 'tenantId: {{tenantId}}' \
--header 'Content-Type: application/json' \
--data-raw '[
{
"deptId": 1203, //科室id
"userId": 22, //学员id
"detailList": [
{
"id":449, //数据id
"attendanceDate":"2024-03-25", //考勤日期
"attendanceStatus": 6, //学生考勤状态 1、正常 2、请假 5、旷工 6、异常
"teachAttendanceStatus":4 //上报考勤状态 1、正常 3、早退 4、迟到 5、旷工
}
] //上报考勤详情
}
]'
{}