-
Notifications
You must be signed in to change notification settings - Fork 199
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
๐ 3๋จ๊ณ - ๊ธฐ๋ฅ ์ฐ์ ํจํค์ง ๊ตฌ์ฑํ๊ธฐ #343
base: shinseongsu
Are you sure you want to change the base?
Changes from all commits
5c2bfd8
67d20c2
9041e47
c731e01
d67e6af
20fd8a9
cdbcd87
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
package kitchenpos.ui; | ||
package kitchenpos.menu.ui; | ||
|
||
import kitchenpos.application.MenuService; | ||
import kitchenpos.domain.Menu; | ||
import kitchenpos.menu.application.MenuService; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ๊ณ ๋ฏผํด๋ณด๋ฉด ์ข์ ๊ฒ ๊ฐ์์. |
||
import kitchenpos.menu.domain.Menu; | ||
import org.springframework.http.ResponseEntity; | ||
import org.springframework.web.bind.annotation.*; | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package kitchenpos.domain; | ||
package kitchenpos.order.domain; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. order์์๋ ๋งค์ฅ ๋ด ์์ฌ ์ฃผ๋ฌธ, ํ
์ดํฌ ์์ ์ฃผ๋ฌธ, ๋ฐฐ๋ฌ ์ฃผ๋ฌธ ๋ชจ๋ ํจ๊ป ์๊ตฐ์. ๋ง์ฝ ๊ฐ๊ฐ์ ๋ฐ์ด๋๋ ์ปจํ ์คํธ๋ก ๋ด์ผํ๋ค๋ฉด ์ด๋ป๊ฒ ๋ถ๋ฆฌํด๋ณด๋ฉด ์ข์๊น์? |
||
|
||
import javax.persistence.*; | ||
import java.time.LocalDateTime; | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package kitchenpos.domain; | ||
package kitchenpos.order.domain; | ||
|
||
import java.util.List; | ||
import java.util.Optional; | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package kitchenpos.domain; | ||
package kitchenpos.order.domain; | ||
|
||
import java.util.List; | ||
import java.util.Optional; | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package kitchenpos.domain; | ||
package kitchenpos.order.domain; | ||
|
||
public enum OrderType { | ||
DELIVERY, TAKEOUT, EAT_IN | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package kitchenpos.infra; | ||
package kitchenpos.order.infra; | ||
|
||
import org.springframework.stereotype.Component; | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package kitchenpos.infra; | ||
package kitchenpos.order.infra; | ||
|
||
import java.math.BigDecimal; | ||
import java.util.UUID; | ||
|
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.
๊ณ ๋ฏผํด๋ณด๋ฉด ์ข์ ๊ฒ ๊ฐ์์.
ํ์ฌ Menu ์ปจํ ์คํธ์์ Product ์ปจํ ์คํธ์ ๋๋ฉ์ธ์ ์ง์ ๋ฐ๋ผ ๋ณด๊ณ ์์ด์.
๊ฐ์ ์ฐธ์กฐ๋ฅผ ์ ์ฉํ๋ฉด ์ด๋ป๊ฒ ๋ ๊น์? ์ด๋ค ์ฅ๋จ์ ์ด ์์๊น์?๐