Rev 740 | Rev 966 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
package in.shop2020.hotspot.dashbaord.shared.actions;import com.google.gwt.user.client.rpc.IsSerializable;public class Order implements IsSerializable{private static final long serialVersionUID = 5804421607858217477L;private long orderId;private long customerId;private String customerName;private String customerMobileNumber;private String customerPincode;private String customerAddress1;private String customerAddress2;private String customerCity;private String customerState;private String customerEmail;private long createdOn;private long expectedDeliveryTime;private long status;private String statusMessage;private long itemId;private String vendor;private String modelName;private String modelNumber;private String color;public String getColor() {return color;}public void setColor(String color) {this.color = color;}private String extraInfo;private double totalAmount;private double totalWeight;private String airwayBillNo;private String billedBy;private String invoiceNumber;private long jacketNumber;private boolean alert;@SuppressWarnings("unused")private Order(){}public Order(long orderId, long customerId, String customerName,String customerMobileNumber, String customerPincode,String customerAddress1, String customerAddress2, String customerCity, String customerState, String customerEmail, long createdOn,long expectedDeliveryTime, long status, String statusMessage,long itemId, String vendor, String modelName,String modelNumber, String color, String extraInfo, double totalAmount,double totalWeight, String airwayBillNo, String billedBy,String invoiceNumber, long jacketNumber, boolean alert) {super();this.orderId = orderId;this.customerId = customerId;this.customerName = customerName;this.customerMobileNumber = customerMobileNumber;this.customerPincode = customerPincode;this.customerAddress1 = customerAddress1;this.customerAddress2 = customerAddress2;this.customerCity = customerCity;this.customerState = customerState;this.customerEmail = customerEmail;this.createdOn = createdOn;this.expectedDeliveryTime = expectedDeliveryTime;this.status = status;this.statusMessage = statusMessage;this.itemId = itemId;this.vendor = vendor;this.modelName = modelName;this.modelNumber = modelNumber;this.color = color;this.extraInfo = extraInfo;this.totalAmount = totalAmount;this.totalWeight = totalWeight;this.airwayBillNo = airwayBillNo;this.billedBy = billedBy;this.invoiceNumber = invoiceNumber;this.jacketNumber = jacketNumber;this.alert = alert;}public long getCustomerId() {return customerId;}public long getCreatedOn() {return createdOn;}public long getExpectedDeliveryTime() {return expectedDeliveryTime;}public void setStatusMessage(String message){this.statusMessage = message;}public String getStatusMessage() {return statusMessage;}public boolean isAlert() {return alert;}public void setAlert(boolean alert) {this.alert = alert;}public void setOrderId(long orderId) {this.orderId = orderId;}public long getOrderId() {return orderId;}public void setCustomerName(String customerName) {this.customerName = customerName;}public String getCustomerName() {return customerName;}public void setCustomerMobileNumber(String customerMobileNumber) {this.customerMobileNumber = customerMobileNumber;}public String getCustomerMobileNumber() {return customerMobileNumber;}public void setCustomerPincode(String customerPincode) {this.customerPincode = customerPincode;}public String getCustomerPincode() {return customerPincode;}public void setCustomerEmail(String customerEmail) {this.customerEmail = customerEmail;}public String getCustomerEmail() {return customerEmail;}public void setCustomerAddress1(String customerAddress) {this.customerAddress1 = customerAddress;}public String getCustomerAddress1() {return customerAddress1;}public void setCustomerAddress2(String customerAddress2) {this.customerAddress2 = customerAddress2;}public String getCustomerAddress2() {return customerAddress2;}public String getCustomerCity() {return customerCity;}public void setCustomerCity(String customerCity) {this.customerCity = customerCity;}public String getCustomerState() {return customerState;}public void setCustomerState(String customerState) {this.customerState = customerState;}public void setModelName(String modelName) {this.modelName = modelName;}public String getModelName() {return modelName;}public void setTotalWeight(double totalWeight) {this.totalWeight = totalWeight;}public double getTotalWeight() {return totalWeight;}public void setExtraInfo(String extraInfo) {this.extraInfo = extraInfo;}public String getExtraInfo() {return extraInfo;}public void setModelNumber(String modelNumber) {this.modelNumber = modelNumber;}public String getModelNumber() {return modelNumber;}public void setTotalAmount(double totalAmount) {this.totalAmount = totalAmount;}public double getTotalAmount() {return totalAmount;}public void setItemId(long itemId) {this.itemId = itemId;}public long getItemId() {return itemId;}public void setVendor(String vendor) {this.vendor = vendor;}public String getVendor() {return vendor;}public void setStatus(long status) {this.status = status;}public long getStatus() {return status;}public void setAirwayBillNo(String airwayBillNo) {this.airwayBillNo = airwayBillNo;}public String getAirwayBillNo() {return airwayBillNo;}public void setBilledBy(String billedBy) {this.billedBy = billedBy;}public String getBilledBy() {return billedBy;}public void setInvoiceNumber(String invoiceNumber) {this.invoiceNumber = invoiceNumber;}public String getInvoiceNumber() {return invoiceNumber;}public long getJacketNumber() {return jacketNumber;}public void setJacketNumber(long jacketNumber) {this.jacketNumber = jacketNumber;}}