percent 수정

This commit is contained in:
2026-06-04 13:43:10 +09:00
parent 0447dd80ed
commit cd14e6e3aa

View File

@@ -268,7 +268,10 @@ public class ModelMngRepositoryImpl implements ModelMngRepositoryCustom {
// per 계산
NumberExpression<Double> per =
currentEpoch.divide(totalEpoch).multiply(100).castToNum(Double.class);
currentEpoch
.castToNum(Double.class)
.divide(totalEpoch.castToNum(Double.class))
.multiply(100);
return queryFactory
.select(