From d2c96a66d30386d15768bb5bbf0c42f598661367 Mon Sep 17 00:00:00 2001 From: cabbage16 Date: Sat, 19 Oct 2024 18:06:12 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EC=96=B4=EB=93=9C=EB=AF=BC=20=EB=B6=84?= =?UTF-8?q?=EC=84=9D=EA=B8=B0=EB=8A=A5=20=EC=B6=9C=EC=8B=A0=20=ED=95=99?= =?UTF-8?q?=EA=B5=90=20=ED=98=84=ED=99=A9=20=EC=A1=B0=ED=9A=8C=20=EC=8B=9C?= =?UTF-8?q?=20=ED=95=99=EC=83=9D=EB=93=A4=EC=9D=B4=20=EC=9D=B4=EB=A6=84?= =?UTF-8?q?=EC=88=9C=EC=9C=BC=EB=A1=9C=20=EC=A0=95=EB=A0=AC=EB=90=98?= =?UTF-8?q?=EC=A7=80=20=EC=95=8A=EB=8A=94=20=EC=98=A4=EB=A5=98=20=ED=95=B4?= =?UTF-8?q?=EA=B2=B0=20-=20=EB=B6=80=EC=82=B0=20=EC=A7=80=EC=97=AD=20?= =?UTF-8?q?=ED=95=99=EC=83=9D=EB=93=A4=EC=9D=80=20=EC=A0=95=EB=A0=AC?= =?UTF-8?q?=EC=9D=B4=20=EB=90=98=EC=A7=80=20=EC=95=8A=EC=9D=80=20=EC=83=81?= =?UTF-8?q?=ED=83=9C=EB=A1=9C=20=EB=82=98=EC=98=A4=EB=8A=94=20=EC=98=A4?= =?UTF-8?q?=EB=A5=98=EB=A5=BC=20=ED=95=B4=EA=B2=B0=ED=96=88=EC=96=B4?= =?UTF-8?q?=EC=9A=94.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../maru/infrastructure/persistence/form/FormRepositoryImpl.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/com/bamdoliro/maru/infrastructure/persistence/form/FormRepositoryImpl.java b/src/main/java/com/bamdoliro/maru/infrastructure/persistence/form/FormRepositoryImpl.java index 929e3651..3d692687 100644 --- a/src/main/java/com/bamdoliro/maru/infrastructure/persistence/form/FormRepositoryImpl.java +++ b/src/main/java/com/bamdoliro/maru/infrastructure/persistence/form/FormRepositoryImpl.java @@ -327,6 +327,7 @@ public List findSchoolByAddress(List round, String k .where(form.education.school.address.contains(keyword) .or(form.education.school.location.eq(keyword)) .and(form.status.in(round))) + .orderBy(form.applicant.name.asc()) .fetch(); }