API score조회 수정과 POST 방식 추가 완료
선수별 record 추가
{
"atBat": 4,
"hit": 2,
"out": 2
}
팀별 score 추가
{
"inningNumber": 1,
"score": 1
}
팀별 score 조회
{
"gameId": 1,
"teamScores": [
{
"teamId": 1,
"teamName": "KIA 타이거즈",
"scores": [
{
"inningNumber": 1,
"score": 1
},
{
"inningNumber": 2,
"score": 0
}
]
},
{
"teamId": 2,
"teamName": "NC 다이노즈",
"scores": [
{
"inningNumber": 1,
"score": 1
}
]
}
]
}