Skip to content

Commit

Permalink
Merge pull request #184 from UnivApp/feature/tuition-fee-refactor2
Browse files Browse the repository at this point in the history
refactor: 등록금 타입명 한글로 변경
  • Loading branch information
nyeroni authored Nov 14, 2024
2 parents 80a9d6a + 62281c6 commit 2d3cbc1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ private List<YearTuitionFeeResponse> getAllTuitionFeeResponses(List<TuitionFee>
String year = entry.getKey();
List<TuitionFeeResponse> tuitionFeeResponses = entry.getValue().stream()
.map(tuitionFee -> new TuitionFeeResponse(
tuitionFee.getTuitionFeeType().name(),
tuitionFee.getTuitionFeeType().getDisplayName(),
tuitionFee.getFeeAmount()))
.collect(Collectors.toList());
return new YearTuitionFeeResponse(year, tuitionFeeResponses);
Expand Down

0 comments on commit 2d3cbc1

Please sign in to comment.