Merge branch 'main' of https://github.com/dg04-hi/hi-backend
This commit is contained in:
commit
20a9ba9257
@ -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())
|
||||||
|
|||||||
@ -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;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user