1 2 package ent; 3 4 import java.math.BigDecimal ; 5 import java.sql.Date ; 6 7 8 11 public interface OrdersLocalBusiness { 12 Integer getOrderNum(); 13 14 Integer getQuantity(); 15 16 void setQuantity(Integer quantity); 17 18 BigDecimal getShippingCost(); 19 20 void setShippingCost(BigDecimal shippingCost); 21 22 Date getSalesDate(); 23 24 void setSalesDate(Date salesDate); 25 26 Date getShippingDate(); 27 28 void setShippingDate(Date shippingDate); 29 30 String getFreightCompany(); 31 32 void setFreightCompany(String freightCompany); 33 34 ent.CustomerLocal getCustomerId(); 35 36 void setCustomerId(ent.CustomerLocal customerId); 37 38 ProductLocal getProductId(); 39 40 void setProductId(ProductLocal productId); 41 42 } 43 | Popular Tags |