package northwind.model; import java.math.BigDecimal; import java.util.Date; import java.util.Set; import java.util.UUID; public class Order { private int orderID; private UUID customerID; private Integer employeeID; private Date orderDate; private Date requiredDate; private Date shippedDate; private BigDecimal freight; private String shipName; private String shipAddress; private String shipCity; private String shipRegion; private String shipPostalCode; private String shipCountry; private int rowVersion; private Customer customer; private Employee employee; private InternationalOrder internationalOrder; private Set<OrderDetail> orderDetails; public int getOrderID() { return orderID; } public void setOrderID(int orderID) { this.orderID = orderID; } public UUID getCustomerID() { return customerID; } public void setCustomerID(UUID customerID) { this.customerID = customerID; } public Integer getEmployeeID() { return employeeID; } public void setEmployeeID(Integer employeeID) { this.employeeID = employeeID; } public Date getOrderDate() { return orderDate; } public void setOrderDate(Date orderDate) { this.orderDate = orderDate; } public Date getRequiredDate() { return requiredDate; } public void setRequiredDate(Date requiredDate) { this.requiredDate = requiredDate; } public Date getShippedDate() { return shippedDate; } public void setShippedDate(Date shippedDate) { this.shippedDate = shippedDate; } public BigDecimal getFreight() { return freight; } public void setFreight(BigDecimal freight) { this.freight = freight; } public String getShipName() { return shipName; } public void setShipName(String shipName) { this.shipName = shipName; } public String getShipAddress() { return shipAddress; } public void setShipAddress(String shipAddress) { this.shipAddress = shipAddress; } public String getShipCity() { return shipCity; } public void setShipCity(String shipCity) { this.shipCity = shipCity; } public String getShipRegion() { return shipRegion; } public void setShipRegion(String shipRegion) { this.shipRegion = shipRegion; } public String getShipPostalCode() { return shipPostalCode; } public void setShipPostalCode(String shipPostalCode) { this.shipPostalCode = shipPostalCode; } public String getShipCountry() { return shipCountry; } public void setShipCountry(String shipCountry) { this.shipCountry = shipCountry; } public int getRowVersion() { return rowVersion; } public void setRowVersion(int rowVersion) { this.rowVersion = rowVersion; } public Customer getCustomer() { return customer; } public void setCustomer(Customer customer) { this.customer = customer; } public Employee getEmployee() { return employee; } public void setEmployee(Employee employee) { this.employee = employee; } public InternationalOrder getInternationalOrder() { return internationalOrder; } public void setInternationalOrder(InternationalOrder internationalOrder) { this.internationalOrder = internationalOrder; } public Set<OrderDetail> getOrderDetails() { return orderDetails; } public void setOrderDetails(Set<OrderDetail> orderDetails) { this.orderDetails = orderDetails; } }