| package com.matrix.system.shopXcx.mqTask.DTO; | 
|   | 
| import java.util.List; | 
|   | 
| public class OrderDto { | 
|   | 
|      | 
|      | 
|      | 
|     String phone; | 
|      | 
|     Double price; | 
|      | 
|      | 
|      | 
|     List<OrderItemDto> orderItems; | 
|   | 
|   | 
|   | 
|     public String getPhone() { | 
|         return phone; | 
|     } | 
|   | 
|   | 
|   | 
|     public void setPhone(String phone) { | 
|         this.phone = phone; | 
|     } | 
|   | 
|   | 
|   | 
|     public Double getPrice() { | 
|         return price; | 
|     } | 
|   | 
|   | 
|   | 
|     public void setPrice(Double price) { | 
|         this.price = price; | 
|     } | 
|   | 
|   | 
|   | 
|     public List<OrderItemDto> getOrderItems() { | 
|         return orderItems; | 
|     } | 
|   | 
|   | 
|   | 
|     public void setOrderItems(List<OrderItemDto> orderItems) { | 
|         this.orderItems = orderItems; | 
|     } | 
|      | 
|      | 
|      | 
| } |