유저테이블 변경

This commit is contained in:
2025-11-26 12:22:33 +09:00
parent 315254bdd9
commit 2641b48460
11 changed files with 176 additions and 27 deletions

View File

@@ -22,8 +22,12 @@ public class QuerydslOrderUtil {
sort -> {
Order order = sort.isAscending() ? Order.ASC : Order.DESC;
// PathBuilder.get()는 컬럼명(String)을 동적 Path로 반환
return new OrderSpecifier<>(order, entityPath.get(sort.getProperty(), String.class));
return new OrderSpecifier<>(order, entityPath.get(sort.getProperty(), Comparable.class));
})
.toArray(OrderSpecifier[]::new);
}
}