This repository was archived by the owner on Aug 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 54
[#70] 배달 매칭 서비스 #69
Open
yyy9942
wants to merge
18
commits into
rider_info_service
Choose a base branch
from
delivery_service
base: rider_info_service
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
[#70] 배달 매칭 서비스 #69
Changes from 1 commit
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
c359d94
Merge pull request #65 from f-lab-edu/order_coupon
yyy9942 5c6b1e8
Merge pull request #64 from f-lab-edu/coupon_test
yyy9942 f7fb9c1
배달 매칭 서비스 제작
44d1eb5
배달 매칭 제작
06a9543
Merge pull request #68 from f-lab-edu/rider_info_service
yyy9942 c4d70b3
Merge pull request #71 from f-lab-edu/order_coupon
yyy9942 6de3866
리뷰 적용
yyy9942 6e5255d
푸시_서비스_적용에 적용한 리뷰를 Merge, 해당 내용으로 발생하는 오류 수정
yyy9942 ea62c9a
배달원 매칭 개발
yyy9942 c0ee25a
리뷰 반영
yyy9942 82f0018
maven에서 빌드되지 않는 버그 수정
0fa1918
리뷰 반영
yyy9942 41da68f
배달원의 배달 관련 기능 추가
yyy9942 6224def
리뷰반영
yyy9942 c945f37
오늘의 배달 수입 조회 기능 추가
da0fdce
버그 수정
5d952ca
- 리뷰 반영
yyy9942 9b49198
위치 관련 버그 수정
yyy9942 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,17 @@ | ||
package com.delfood.mapper; | ||
|
||
import java.time.LocalDate; | ||
import java.util.List; | ||
import org.springframework.stereotype.Repository; | ||
import com.delfood.dto.rider.DeliveryInfoDTO; | ||
import com.delfood.dto.rider.DeliveryOrderInfo; | ||
|
||
@Repository | ||
public interface DeliveryMapper { | ||
|
||
List<DeliveryInfoDTO> findByRiderId(String riderId, Long lastViewedOrderId); | ||
|
||
DeliveryInfoDTO findCurrentDeliveryByRiderId(String riderId); | ||
|
||
List<DeliveryOrderInfo> findTodayBillsByRiderId(String riderId, LocalDate today); | ||
} |
This file contains 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
This file contains 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
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.
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.
메소드명은 today인데 날짜를 파라미터르 받고있네요. 이럴 때는 쿼리에 확실하게 오늘 날짜만 조회하도록 넣어두는것이 좋습니다~