package study.java.drools; public class Order { private Customer customer; private double price; private String name; public String getName() { return name; } public void setName(String name) { this.name = name; } public Customer getCustomer() { return customer; } public void setCustomer(Customer customer) { this.customer = customer; } public double getPrice() { return price; } public void setPrice(double price) { this.price = price; } }