-
Notifications
You must be signed in to change notification settings - Fork 0
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 #118 from KAKAO-TOUR-API-CONTEST/devyj
fix : 1차원 받아서 넣는걸로 변경
- Loading branch information
Showing
3 changed files
with
38 additions
and
22 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
19 changes: 9 additions & 10 deletions
19
src/main/java/com/example/ai_jeju/dto/RecommendRequest.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 |
---|---|---|
@@ -1,17 +1,16 @@ | ||
package com.example.ai_jeju.dto; | ||
|
||
import java.util.List; | ||
import lombok.Getter; | ||
import lombok.Setter; | ||
|
||
public class RecommendRequest { | ||
import java.util.List; | ||
|
||
private List<List<Long>> recommendations; | ||
|
||
// Getter and Setter | ||
public List<List<Long>> getRecommendations() { | ||
return recommendations; | ||
} | ||
@Getter | ||
@Setter | ||
public class RecommendRequest { | ||
|
||
public void setRecommendations(List<List<Long>> recommendations) { | ||
this.recommendations = recommendations; | ||
} | ||
private List<Long> restaurants; | ||
private List<Long> leisures; | ||
private List<Long> hotels; | ||
} |
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