작업현황관리 데이터 반환값 추가중

This commit is contained in:
DanielLee
2026-01-05 12:33:48 +09:00
parent 6f089decf9
commit 96f5a87b1a
3 changed files with 86 additions and 9 deletions

View File

@@ -268,6 +268,12 @@ public class LabelAllocateRepositoryImpl implements LabelAllocateRepositoryCusto
case "REMAINING_ASC":
baseQuery.orderBy(remainingSum.asc());
break;
case "COMPLETED_DESC":
baseQuery.orderBy(completedSum.desc());
break;
case "COMPLETED_ASC":
baseQuery.orderBy(completedSum.asc());
break;
case "NAME_ASC":
baseQuery.orderBy(memberEntity.name.asc());
break;