[KC-148] 라벨링 목록 - 진행율 퍼센트 2째자리까지만 + spotless

This commit is contained in:
2026-01-12 09:48:37 +09:00
parent 7d430f22ee
commit 74f19a3d54
3 changed files with 28 additions and 41 deletions

View File

@@ -116,7 +116,8 @@ public class LabelWorkDto {
if (this.labelCompleteTotCnt == null) {
return 0.0;
}
return (double) this.labelCompleteTotCnt / this.totalAssignmentCnt * 100.0;
return Math.round(((double) this.labelCompleteTotCnt / this.totalAssignmentCnt * 100.0) * 100)
/ 100.0;
}
}