Blame | Last modification | View Log | RSS feed
package in.shop2020.hotspot.dashbaord.shared.actions;import com.google.gwt.user.client.rpc.IsSerializable;public class ReturnOrder implements IsSerializable{private long orderId;private long warehouseId;private long itemId;private String productGroup;private String brand;private String modelName;private String modelNumber;private String color;private String invoiceNumber;private long jacketNumber;private double totalPrice;private double transferPrice;private boolean processedStatus;private long createdAt;@SuppressWarnings("unused")private ReturnOrder(){}public ReturnOrder(long orderId, long warehouseId, long itemId, String productGroup,String brand, String modelName, String modelNumber, String color,String invoiceNumber, long jacketNumber, double totalPrice,double transferPrice, boolean processedStatus, long createdAt) {super();this.orderId = orderId;this.warehouseId = warehouseId;this.itemId = itemId;this.productGroup = productGroup;this.brand = brand;this.modelName = modelName;this.modelNumber = modelNumber;this.color = color;this.invoiceNumber = invoiceNumber;this.jacketNumber = jacketNumber;this.totalPrice = totalPrice;this.transferPrice = transferPrice;this.processedStatus = processedStatus;this.createdAt = createdAt;}public long getOrderId() {return orderId;}public long getWarehouseId() {return warehouseId;}public long getItemId() {return itemId;}public String getProductGroup() {return productGroup;}public String getBrand() {return brand;}public String getModelName() {return modelName;}public String getModelNumber() {return modelNumber;}public String getColor() {return color;}public String getInvoiceNumber() {return invoiceNumber;}public long getJacketNumber() {return jacketNumber;}public double getTotalPrice() {return totalPrice;}public double getTransferPrice() {return transferPrice;}public boolean isProcessedStatus() {return processedStatus;}public long getCreatedAt() {return createdAt;}}