-
Notifications
You must be signed in to change notification settings - Fork 0
파트장의_파트원_리스트_출석확인
alia edited this page Jun 6, 2020
·
7 revisions
메소드 | 경로 | 설명 |
---|---|---|
GET | /attendance/part-list | 파트장이 소속 파트원들 출석현황 불러오기 |
sql: 해당 날짜와 시간에 맞게 leader_id가 server이면 server파트의 파트원들만 나오도록 user와 attendance 조인해서 파트원 출석정보 불러오기
{
"Content-Type": "application/json"
}
{
"leader_part": "server",
"seminar_date": "2020-04-18",
"seminar_time": "14:00:00"
}
- leader_part: 파트장의 소속파트
{
"status": 200,
"success": true,
"message": "소속 파트원들 출석현황 불러오기 성공",
"data": {
"result": [
{
"user_name": "정효원",
"user_birth": "971012",
"attendance_time": "14:02:30",
"attendance_check": "0"
},
{
"user_name": "조충범",
"user_birth": "960815",
"attendance_time": "14:02:36",
"attendance_check": "0"
}
}
}
- 데이터 누락
{
"status": 400,
"success": false,
"message": "필요한 값이 없습니다."
}