Skip to content
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

[Feature] 공고 강아지 성별, 몸무게 제거 및 API 수정 #160

Merged
merged 5 commits into from
Apr 18, 2024

Conversation

kyeong-hyeok
Copy link
Member

💡 연관된 이슈

close #159

📝 작업 내용

  • 공고 강아지 성별, 몸무게 제거
  • 공고 등록 API - 강아지 성별, 몸무게 제거
  • 이동봉사자, 이동봉사 중개 공고 상세 보기 API - 강아지 성별, 몸무게 제거
  • 공고 상세 보기 테스트 코드 수정
  • import.sql dog 관련 수정

💬 리뷰 요구 사항

@kyeong-hyeok kyeong-hyeok added ✨ Feature 기능 개발 Priority: Medium 우선순위 중간 🐯 Koeyhk 담당자 labels Apr 18, 2024
@kyeong-hyeok kyeong-hyeok linked an issue Apr 18, 2024 that may be closed by this pull request
6 tasks
Copy link
Member

@hojeong2747 hojeong2747 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

우리 초반 erd 설계할 때 되게 오래 고민하던 기억이 나네요. 하나 짤 때도 많이 고민했는데 정규화 고려해서 강아지 도메인을 분리할지 말지 고민하고 1안, 2안, 3안 나눴던 기억이 새록새록..

덕분에 많이 고민해서 설계한 erd 덕분에 유지보수하기 편한 것 같아요! 비즈니스 로직, 서비스 단에서 로직 변경 사항이 없고 dto에서 불필요한 필드만 제거하면 되니 '유지보수가 용이하다'는 것도 느껴보네요. 비즈니스 로직과 dto 변환을 분리한 것도 장점을 확실히 알 수 있게 되었어요.

수고하셨습니다~!

private String name; // 강아지 이름
@Column(nullable = false)
private DogSize size; // 강아지 사이즈
@Column(nullable = false)
private DogGender gender; // 강아지 성별
private Float weight; // 강아지 몸무게
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

강아지 도메인 엔티티에서 제거되는 필드를 빼주고

@@ -166,7 +166,7 @@ public PostIntermediaryGetOneResponse getIntermediaryOnePost(Long postId) {
.select(Projections.constructor(PostIntermediaryGetOneResponse.class,
post.id, postImage.image, post.status, post.departureLoc, post.arrivalLoc,
post.startDate, post.endDate, post.pickUpTime, post.isKennel, post.content,
dog.name, dog.size, dog.gender, dog.weight, dog.specifics,
dog.name, dog.size, dog.specifics,
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

해당 엔티티 사용하던 DTO와 비즈니스 로직에서도 필드 제거만 해주고

@@ -217,7 +217,7 @@ void setUp() {
images.add("image2");
PostVolunteerGetOneResponse response = new PostVolunteerGetOneResponse(1L, "mainImage", images, "모집중", "서울시 성북구", "서울시 중랑구",
startDate, endDate, "12:00", true, "이동봉사 공고", "봄이", DogSize.SMALL.getKey(),
DogGender.FEMALE.getKey(), 5.1f, "ㄱㅇㅇ", 1L, "profileImage", "이동봉사 중개", true);
"ㄱㅇㅇ", 1L, "profileImage", "이동봉사 중개", true);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

테스트 수정까지 !

@kyeong-hyeok
Copy link
Member Author

설계 및 1차 개발 이후에 추가적으로 수정되는 부분을 개발하면서 편리한 부분을 느낄 수 있었던 거 같아요! 좋습니다.

@kyeong-hyeok kyeong-hyeok merged commit 45e09a0 into develop Apr 18, 2024
1 check passed
@kyeong-hyeok kyeong-hyeok deleted the feat/159-delete-dog-gender-weight branch April 18, 2024 23:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
✨ Feature 기능 개발 🐯 Koeyhk 담당자 Priority: Medium 우선순위 중간
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[Feature] 공고 강아지 성별, 몸무게 제거 및 API 수정
2 participants