From 28340d2e5f332ea8d09e3a7cc98e137bce6c28e3 Mon Sep 17 00:00:00 2001 From: "Choi, Minwoo" Date: Fri, 17 Oct 2025 10:51:55 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EC=97=AC=ED=96=89=20=EB=A6=AC=ED=8F=AC?= =?UTF-8?q?=ED=8A=B8=20API=20=EC=9D=91=EB=8B=B5=20=ED=95=84=EB=93=9C=20?= =?UTF-8?q?=EB=A7=A4=ED=95=91=20=EC=98=A4=EB=A5=98=20=EC=88=98=EC=A0=95(#9?= =?UTF-8?q?0)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * refactor: TripReport.of()에서 매개변수 순서 조정 --- .../java/com/ject/studytrip/trip/domain/model/TripReport.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/ject/studytrip/trip/domain/model/TripReport.java b/src/main/java/com/ject/studytrip/trip/domain/model/TripReport.java index 97036c5..7724da7 100644 --- a/src/main/java/com/ject/studytrip/trip/domain/model/TripReport.java +++ b/src/main/java/com/ject/studytrip/trip/domain/model/TripReport.java @@ -47,10 +47,10 @@ public class TripReport extends BaseTimeEntity { public static TripReport of( Member member, - String startDate, - String endDate, String title, String content, + String startDate, + String endDate, long completedMissionCount, long totalFocusHours, long studyDays,