Subversion Repositories SmartDukaan

Rev

Rev 9831 | Rev 10047 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 9831 Rev 9833
Line 2... Line 2...
2
 
2
 
3
import java.util.List;
3
import java.util.List;
4
 
4
 
5
 
5
 
6
public class OrderPojo {
6
public class OrderPojo {
7
	private long orderId;
7
	private Long orderId;
8
	private String unitPrice;
8
	private String unitPrice;
9
	private String totalAmount;
9
	private String totalAmount;
10
	private String gvAmount;
10
	private String gvAmount;
11
	private String dataProtectionAmount;
11
	private String dataProtectionAmount;
12
	private String insuranceAmount;
12
	private String insuranceAmount;
13
	private String itemName;
13
	private String itemName;
14
	private int quantity;
14
	private Integer quantity;
15
	private String orderedOn;
15
	private String orderedOn;
16
	private String promisedDelivery;
16
	private String promisedDelivery;
17
	private String firstDeliveryAttempted;
17
	private String firstDeliveryAttempted;
18
	private String courierUrl;
18
	private String courierUrl;
19
	private String orderUrl;
19
	private String orderUrl;
20
	private String status;
20
	private String status;
21
	private String courierName;
21
	private String courierName;
22
	private String awbNumber;
22
	private String awbNumber;
23
	private AddressPojo shippingAddress;
23
	private AddressPojo shippingAddress;
24
	private List<AddressPojo> allAddresses;
24
	private List<AddressPojo> allAddresses;
25
	private boolean initiateCancellable;
25
	private Boolean initiateCancellable;
26
	private boolean requestCancellable;
26
	private Boolean requestCancellable;
27
	public void setOrderId(long orderId) {
27
	public void setOrderId(long orderId) {
28
		this.orderId = orderId;
28
		this.orderId = orderId;
29
	}
29
	}
30
	public long getOrderId() {
30
	public long getOrderId() {
31
		return orderId;
31
		return orderId;