Skip to content

Commit

Permalink
Update controller
Browse files Browse the repository at this point in the history
  • Loading branch information
Hot-dong committed Jun 28, 2023
1 parent ea737ff commit b7d7a27
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ public class ResultRestController {
@GetMapping
public List<ResultDto> getResult_test(HttpSession session) {
ResultDto responseChat1 = new ResultDto("https://google.com", "comp", "제목", "지역", "대충급여", "대충형태", "대충시간", "몰?루", "경력");
// ResultDto responseChat2 = new ResultDto("https://google.com", "comp2", "제목2", "지역2", "대충급여2", "대충형태22", "대충시간22", "몰?루22", "경력22");
// ResultDto responseChat3 = new ResultDto("https://google.com", "comp3", "제목3", "지역3", "대충급여3", "대충형태33", "대충시간33", "몰?루33", "경력33");
ResultDto responseChat2 = new ResultDto("https://google.com", "comp2", "제목2", "지역2", "대충급여2", "대충형태22", "대충시간22", "몰?루22", "경력22");
ResultDto responseChat3 = new ResultDto("https://google.com", "comp3", "제목3", "지역3", "대충급여3", "대충형태33", "대충시간33", "몰?루33", "경력33");
List<ResultDto> chats = new ArrayList<>();
chats.add(responseChat1);
// chats.add(responseChat2);
// chats.add(responseChat3);
chats.add(responseChat2);
chats.add(responseChat3);
return chats;
}
}

0 comments on commit b7d7a27

Please sign in to comment.