-
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 #19
The head ref may contain hidden characters: "feat/#15-\uC774\uBBF8\uC9C0-\uC800\uC7A5"
Conversation
…ount, URL 부분 제외)
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.
청첩장 관련 코드 구현하시느라 고생 많으셨습니다! 코드 모두 확인 마쳤고, 수정해야할 부분, 논의 했으면 하는 부분들 리뷰 남겼으니 확인 부탁드려요!
그리고 제가 놓친 부분이 있을 수도 있습니다. 추후 서브도메인 그리고 유저와 크로스 해서 작업이 많을 텐데 원만한 합의를 통해 진행하시면 좋겠습니다!
...ain/java/com/wedit/weditapp/domain/bankAccounts/domain/repository/BankAccountRepository.java
Outdated
Show resolved
Hide resolved
|
||
@Getter | ||
@NoArgsConstructor | ||
public class BankAccountDTO { |
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.
Request와 Response가 명확하도록 dto 명을 수정해주시면 좋겠습니다!
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.
청첩장 등록과 조회 모두에서 같은 dto를 사용할 예정인데 나눠서 만들어야 하는지 궁금합니다!
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.
요청과 응답이 동일하다면 동일하게 사용해도 괜찮을 것 같습니다!
src/main/java/com/wedit/weditapp/domain/image/domain/Image.java
Outdated
Show resolved
Hide resolved
src/main/java/com/wedit/weditapp/domain/invitation/controller/InvitationController.java
Show resolved
Hide resolved
src/main/java/com/wedit/weditapp/domain/invitation/dto/request/InvitationUpdateRequestDTO.java
Outdated
Show resolved
Hide resolved
src/main/java/com/wedit/weditapp/domain/invitation/dto/response/InvitationResponseDTO.java
Show resolved
Hide resolved
src/main/java/com/wedit/weditapp/domain/invitation/service/InvitationService.java
Outdated
Show resolved
Hide resolved
src/main/java/com/wedit/weditapp/domain/invitation/service/InvitationService.java
Outdated
Show resolved
Hide resolved
src/main/java/com/wedit/weditapp/domain/invitation/controller/InvitationController.java
Show resolved
Hide resolved
@Column(nullable = false) | ||
private int location; | ||
|
||
@ManyToOne(fetch = FetchType.LAZY, cascade = CascadeType.REMOVE) // 초대장 삭제 시 이미지도 삭제 |
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.
Cascade REMOVE 옵션을 새롭게 알게됐습니다!
Comments, Decisions 엔티티도 이에 맞게 수정해보겠습니다.
수고 많으셨습니다!
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.
고생하셨습니다! 추후 소셜로그인 작업 끝나면 다시 작업 바로 진행 부탁드려요!
개요
PR 유형
어떤 변경 사항이 있나요?
PR Checklist
PR이 다음 요구 사항을 충족하는지 확인하세요.
📣 To Reviewers
member 쪽 미완성으로, 우선 MemberID를 Pathvariable로 받아와서 테스트 했습니다.
이 부분은 모든 api 완성 후 한 번에 처리할 예정입니다.
url로 반환하는 부분도 추후에 추가 예정입니다.
예외처리도 한 번에 처리할 에정입니다.