Skip to content

Commit

Permalink
[feat] OrderItem
Browse files Browse the repository at this point in the history
  • Loading branch information
Dr-KoKo committed Aug 16, 2024
1 parent 517be58 commit cb53e35
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/main/java/camp/woowak/lab/order/domain/vo/OrderItem.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
package camp.woowak.lab.order.domain.vo;

import jakarta.persistence.Embeddable;

@Embeddable
public class OrderItem {
private Long menuId;
private int quantity;
}

0 comments on commit cb53e35

Please sign in to comment.