-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
90119fc
commit bcdaba2
Showing
7 changed files
with
21 additions
and
2 deletions.
There are no files selected for viewing
Empty file.
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 |
---|---|---|
|
@@ -11,6 +11,7 @@ | |
|
||
@Getter | ||
@NoArgsConstructor | ||
@Table(name = "Menu") | ||
@Entity | ||
public class Menu { | ||
|
||
|
4 changes: 4 additions & 0 deletions
4
src/main/java/net/skhu/tastyinventory_be/dto/InventoryDto.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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
package net.skhu.tastyinventory_be.dto; | ||
|
||
public class InventoryDto { | ||
} |
5 changes: 5 additions & 0 deletions
5
src/main/java/net/skhu/tastyinventory_be/service/Inventory/InventoryService.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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package net.skhu.tastyinventory_be.service.Inventory; | ||
|
||
// 엔티티를 처리하는 비즈니스 로직, ex 재고 업데이트, 평균 사용량 계산 등 | ||
public class InventoryService { | ||
} |
4 changes: 4 additions & 0 deletions
4
src/main/java/net/skhu/tastyinventory_be/service/Menu/MenuService.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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
package net.skhu.tastyinventory_be.service.Menu; | ||
|
||
public class MenuService { | ||
} |