feat : 주문 통계 분석 추가.

This commit is contained in:
lsh9672 2025-06-17 14:48:24 +09:00
parent 75c4df6436
commit d3425b68c7
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;