-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[#83] Refactor : menu 패키지로 클래스 경로를 리팩토링 한다
- Loading branch information
1 parent
54eed6e
commit a5af8de
Showing
10 changed files
with
60 additions
and
58 deletions.
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
13 changes: 6 additions & 7 deletions
13
...ssu/eatssu/web/menu/dto/MenuResponse.java → .../eatssu/domain/menu/dto/MenuResponse.java
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
2 changes: 1 addition & 1 deletion
2
...ain/java/ssu/eatssu/domain/menu/Meal.java → ...a/ssu/eatssu/domain/menu/entity/Meal.java
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
2 changes: 1 addition & 1 deletion
2
...java/ssu/eatssu/domain/menu/MealMenu.java → ...u/eatssu/domain/menu/entity/MealMenu.java
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
2 changes: 1 addition & 1 deletion
2
...ain/java/ssu/eatssu/domain/menu/Menu.java → ...a/ssu/eatssu/domain/menu/entity/Menu.java
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
3 changes: 1 addition & 2 deletions
3
...java/ssu/eatssu/domain/menu/MenuType.java → ...u/eatssu/domain/menu/entity/MenuType.java
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
4 changes: 2 additions & 2 deletions
4
...domain/repository/MealMenuRepository.java → ...n/menu/repository/MealMenuRepository.java
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,7 +1,7 @@ | ||
package ssu.eatssu.domain.repository; | ||
package ssu.eatssu.domain.menu.repository; | ||
|
||
import org.springframework.data.jpa.repository.JpaRepository; | ||
import ssu.eatssu.domain.menu.MealMenu; | ||
import ssu.eatssu.domain.menu.entity.MealMenu; | ||
|
||
public interface MealMenuRepository extends JpaRepository<MealMenu, Long> { | ||
} |
4 changes: 2 additions & 2 deletions
4
...ssu/domain/repository/MealRepository.java → ...omain/menu/repository/MealRepository.java
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
4 changes: 2 additions & 2 deletions
4
...ssu/domain/repository/MenuRepository.java → ...omain/menu/repository/MenuRepository.java
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