-
Notifications
You must be signed in to change notification settings - Fork 2
[feat/#321] 마이노트 - 임장 목록 조회 API #329
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
Merged
Merged
Conversation
This file contains hidden or 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
hyeonahhh
reviewed
Apr 7, 2025
| public LimjangQueryDslRepositoryImpl(EntityManager em) { | ||
| this.queryFactory = new JPAQueryFactory(JPQLTemplates.DEFAULT, em); | ||
| } | ||
| @Override |
Contributor
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.
QueryDSL을 쓰셨군요!! 저는 사실 동적 쿼리를 잘 써보지는 않았는데 확실히 편해(?)보이네요!! 뭔가 좀 직관적인 것 같아요! 짜느라 고생하셨습니당
essaysir
approved these changes
Apr 7, 2025
Contributor
essaysir
left a comment
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.
고생하셨습니다. 머지 해도 될 듯 합니다.
PicturePark1101
added a commit
that referenced
this pull request
Jun 1, 2025
[feat/#321] 마이노트 - 임장 목록 조회 API
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
작업내용
상세설명_ & 캡쳐
[구현]
Hibernate: select ...필드생략 from limjang l1_0 join limjang_price lp1_0 on lp1_0.price_id=l1_0.price_id join address ae1_0 on ae1_0.address_id=l1_0.address_id left join report r1_0 on l1_0.limjang_id=r1_0.limjang_id where l1_0.member_id=? and l1_0.deleted=? order by coalesce(r1_0.total_rate, ?) desc, l1_0.created_at desc Hibernate: select s1_0.scrap_id, s1_0.created_at, s1_0.limjang_id, s1_0.updated_at from scrap s1_0 where s1_0.limjang_id in (?, ?, ?, ?, ?, ?) Hibernate: select il1_0.limjang_id, il1_0.image_id, il1_0.created_at, il1_0.image_url, il1_0.updated_at from image il1_0 where il1_0.limjang_id in ... 생략로컬에서 테스트 완료
{ "isSuccess": true, "code": "COMMON200", "message": "성공입니다.", "result": { "notes": [ { "noteId": 6, "purposeType": "RESIDENTIAL_PURPOSE", "propertyType": "OFFICE_TEL", "priceType": "MONTHLY_RENT", "name": "내집", "imageUrl": [ "https://{버킷명}.s3.ap-northeast-2.amazonaws.com/image/578802c0-508c-4d74-85ee-5804b7d7fac0IMG_2144.PNG" ], "isScraped": true, "rate": null, "price": "100000", "monthlyRent": "100", "pyong": 10, "floor": "5", "address": "경기도 구리시 동구릉로 100001번길 11111", "shortAddress": "구리시 인창동" }, { "noteId": 5, "purposeType": "RESIDENTIAL_PURPOSE", "propertyType": "OFFICE_TEL", "priceType": "SALE", "name": "내집", "imageUrl": [], "isScraped": false, "rate": null, "price": "100000", "monthlyRent": null, "pyong": 10, "floor": "5", "address": "경기도 구리시 동구릉로 100001번길 11111", "shortAddress": "구리시 인창동" }] }