Skip to content

Commit

Permalink
update :: 3 grade
Browse files Browse the repository at this point in the history
  • Loading branch information
JuuuuHong committed Sep 1, 2024
1 parent 8875144 commit 9074f6b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -328,8 +328,8 @@ class AdminServiceImpl(
val grade2ndStudentCount = studentRepository.countByClubAndGrade(club, 2)
row.createCellWithOptions(8, grade2ndStudentCount.toString(), defaultStyle)

val grade3ndStudentCount = studentRepository.countByClubAndGrade(club, 3)
row.createCellWithOptions(9, grade3ndStudentCount.toString(), defaultStyle)
val grade3rdStudentCount = studentRepository.countByClubAndGrade(club, 3)
row.createCellWithOptions(9, grade3rdStudentCount.toString(), defaultStyle)
}

response.contentType = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
Expand Down

0 comments on commit 9074f6b

Please sign in to comment.