Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2697 chandransh 1
package in.shop2020.hotspot.dashbaord.shared.actions;
2
 
3
import com.google.gwt.user.client.rpc.IsSerializable;
4
 
5
public class ReturnOrder implements IsSerializable{
6
	private long orderId;
7
	private long warehouseId;
8
	private long itemId;
9
	private String productGroup;
10
	private String brand;
11
	private String modelName;
12
	private String modelNumber;
13
	private String color;
14
	private String invoiceNumber;
15
	private long jacketNumber;
16
    private double totalPrice;
17
    private double transferPrice;
18
    private boolean processedStatus;
19
    private long createdAt;
20
 
21
    @SuppressWarnings("unused")
22
	private ReturnOrder(){}
23
 
24
	public ReturnOrder(long orderId, long warehouseId, long itemId, String productGroup,
25
			String brand, String modelName, String modelNumber, String color,
26
			String invoiceNumber, long jacketNumber, double totalPrice,
27
			double transferPrice, boolean processedStatus, long createdAt) {
28
		super();
29
		this.orderId = orderId;
30
		this.warehouseId = warehouseId;
31
		this.itemId = itemId;
32
		this.productGroup = productGroup;
33
		this.brand = brand;
34
		this.modelName = modelName;
35
		this.modelNumber = modelNumber;
36
		this.color = color;
37
		this.invoiceNumber = invoiceNumber;
38
		this.jacketNumber = jacketNumber;
39
		this.totalPrice = totalPrice;
40
		this.transferPrice = transferPrice;
41
		this.processedStatus = processedStatus;
42
		this.createdAt = createdAt;
43
	}
44
 
45
	public long getOrderId() {
46
		return orderId;
47
	}
48
 
49
	public long getWarehouseId() {
50
		return warehouseId;
51
	}
52
 
53
	public long getItemId() {
54
		return itemId;
55
	}
56
 
57
	public String getProductGroup() {
58
		return productGroup;
59
	}
60
 
61
	public String getBrand() {
62
		return brand;
63
	}
64
 
65
	public String getModelName() {
66
		return modelName;
67
	}
68
 
69
	public String getModelNumber() {
70
		return modelNumber;
71
	}
72
 
73
	public String getColor() {
74
		return color;
75
	}
76
 
77
	public String getInvoiceNumber() {
78
		return invoiceNumber;
79
	}
80
 
81
	public long getJacketNumber() {
82
		return jacketNumber;
83
	}
84
 
85
	public double getTotalPrice() {
86
		return totalPrice;
87
	}
88
 
89
	public double getTransferPrice() {
90
		return transferPrice;
91
	}
92
 
93
	public boolean isProcessedStatus() {
94
		return processedStatus;
95
	}
96
 
97
	public long getCreatedAt() {
98
		return createdAt;
99
	}
100
}