This commit is contained in:
UNGGU0704 2025-06-17 14:55:13 +09:00
commit 20a9ba9257
2 changed files with 2 additions and 0 deletions

View File

@ -78,6 +78,7 @@ public class OrderService implements OrderUseCase {
.id(order.getId()) .id(order.getId())
.storeId(order.getStoreId()) .storeId(order.getStoreId())
.menuId(order.getMenuId()) .menuId(order.getMenuId())
.menuName(order.getMenuName())
.customerAge(order.getCustomerAge()) .customerAge(order.getCustomerAge())
.customerGender(order.getCustomerGender()) .customerGender(order.getCustomerGender())
.orderAmount(order.getOrderAmount()) .orderAmount(order.getOrderAmount())

View File

@ -16,6 +16,7 @@ public class OrderResponse {
private Long id; private Long id;
private Long storeId; private Long storeId;
private Long menuId; private Long menuId;
private String menuName;
private Integer customerAge; private Integer customerAge;
private String customerGender; private String customerGender;
private BigDecimal orderAmount; private BigDecimal orderAmount;