This repository has been 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 15 commits
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
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
package com.delfood.dao.deliveery; | ||
|
||
import com.delfood.dto.OrderDTO.OrderStatus; | ||
import com.delfood.dto.address.Position; | ||
import com.delfood.dto.rider.DeliveryRiderDTO; | ||
import java.util.List; | ||
|
||
public interface DeliveryDao { | ||
|
||
void updateRiderInfo(DeliveryRiderDTO riderInfo); | ||
|
||
boolean deleteRiderInfo(String riderId); | ||
|
||
boolean hasRiderInfo(String riderId); | ||
|
||
void deleteNonUpdatedRiders(); | ||
|
||
DeliveryRiderDTO getRiderInfo(String riderId); | ||
|
||
List<DeliveryRiderDTO> getRiderList(); | ||
|
||
void deleteAll(List<String> idList); | ||
|
||
OrderStatus getOrderStatus(Long orderId); | ||
|
||
void setOrderStatus(Long orderId, OrderStatus status); | ||
|
||
void deleteOrderStatus(Long orderId); | ||
} |
Oops, something went wrong.
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.
모습을 보니 떠오른건데 type보다는 level이 어떨까요?
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.
level도 생각해보았는데 뭔가 접근의 계층이 있어야 할것같은 느낌이라서요. 제가 만든 로그인은 3가지의 전혀 다른 타입이라서 일단 타입으로 해두었습니다.