-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[feat] 대학교 추가 API 구현 #214
[feat] 대학교 추가 API 구현 #214
Conversation
|
||
public record UniversitiesPostRequest(List<UniversityRequest> universities) { | ||
public record UniversityRequest(String name, double longitude, double latitude) { } | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
파일 끝 개행 누락됐어용
public void createUniversities(UniversitiesPostCommand universitiesPostCommand) { | ||
universityUpdater.saveAll(universitiesPostCommand.toEntityList()); | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
여기두
void saveAll(List<University> universities){ | ||
universityRepository.saveAll(universities); | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
여기두!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
다 반영했음둥 👍
Related Issue 📌
close #213
Description ✔️
To Reviewers
입력데이터
결과