-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #35 from KORAD1004/feature/my-cource
♻️Refactor: 나만의 일정 짜기 GET 요청
- Loading branch information
Showing
5 changed files
with
110 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
src/main/java/com/korad1004/back_end/my_travel_plan/dto/GetScheduleOfCode.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
package com.korad1004.back_end.my_travel_plan.dto; | ||
|
||
|
||
import lombok.Getter; | ||
import lombok.Setter; | ||
|
||
import java.util.List; | ||
|
||
@Getter | ||
@Setter | ||
public class GetScheduleOfCode { | ||
|
||
private String code; | ||
|
||
private String travelName; | ||
|
||
private Integer headCount; | ||
|
||
private String startDate; | ||
|
||
private String endDate; | ||
|
||
private Integer days; | ||
|
||
//number,[hotspot_image,hotspot_title,hotspot_address,hotspot_latitude,hotspot_longitude],memo | ||
} |
25 changes: 25 additions & 0 deletions
25
src/main/java/com/korad1004/back_end/my_travel_plan/dto/GetSpotInfoOfMyTravel.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
package com.korad1004.back_end.my_travel_plan.dto; | ||
|
||
import lombok.Getter; | ||
import lombok.Setter; | ||
|
||
@Getter | ||
@Setter | ||
//하나의 객체 | ||
public class GetSpotInfoOfMyTravel { | ||
|
||
private Integer number; | ||
|
||
private String memo; | ||
|
||
private String image; | ||
|
||
private String title; | ||
|
||
private String address; | ||
|
||
private String latitude; | ||
|
||
private String longitude; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,6 +31,4 @@ public class TourList { | |
@JoinColumn(name = "schedule_code") | ||
private Schedule schedule; | ||
|
||
|
||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters