package com.matrix.system.shopXcx.mqTask.DTO; import java.util.List; public class OrderDto { String phone; Double price; List 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 getOrderItems() { return orderItems; } public void setOrderItems(List orderItems) { this.orderItems = orderItems; } }