Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
package in.shop2020.serving.model;import java.util.List;public class OrderItems {int total;List<Order> order_items;public int getTotal() {return total;}public void setTotal(int total) {this.total = total;}public List<Order> getOrder_items() {return order_items;}public void setOrder_items(List<Order> order_items) {this.order_items = order_items;}}