Skip to content

Commit

Permalink
Merge pull request #192 from dnd-side-project/fix/#176
Browse files Browse the repository at this point in the history
set precedence default value
  • Loading branch information
miraexhoi authored Oct 27, 2024
2 parents 1cdfa20 + 7bfd48a commit fa5c2cf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public record CareerInfoRequest(
@Schema(description = "회사", allowableValues = {"비공개", "대기업", "중견기업", "중소기업", "스타트업", "외국계", "취준생/인턴"})
@NotBlank String company,

@Schema(description = "연차", allowableValues = {"1년 차 미만", "1~2년 차", "2~3년 차", "3~4년 차", "4~5년 차", "5년 차 이상", "취준생/인턴", "비공개"})
@Schema(description = "연차", allowableValues = {"비공개", "1년 차 미만", "1~2년 차", "2~3년 차", "3~4년 차", "4~5년 차", "5년 차 이상"})
@NotBlank String experience
) {
}
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,13 @@ public Long getTotalMyScore(AuthAccountInfo info) {
.mapToLong(this::calculateTotalScore)
.sum();

if (userTotalScore == 0) {
return 100L;
}

Long averagePeopleScore = calculateAveragePeopleScore();

return (averagePeopleScore == 0) ? 0 : (userTotalScore * 100) / averagePeopleScore;
return (averagePeopleScore == 0) ? 100 : (userTotalScore * 100) / averagePeopleScore;
}

/**
Expand Down

0 comments on commit fa5c2cf

Please sign in to comment.