Subversion Repositories SmartDukaan

Rev

Rev 5432 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 5432 Rev 5560
Line 9... Line 9...
9
public class Cart {
9
public class Cart {
10
 
10
 
11
	private long id;
11
	private long id;
12
	private int cart_status;
12
	private int cart_status;
13
	private long address_id;
13
	private long address_id;
-
 
14
	private long pickupStoreId;
14
	private Date checked_out_on;
15
	private Date checked_out_on;
15
	private Date created_on;
16
	private Date created_on;
16
	private Date updated_on;
17
	private Date updated_on;
17
	private double total_price;
18
	private double total_price;
18
	private double discounted_price;
19
	private double discounted_price;
Line 76... Line 77...
76
		return lines;
77
		return lines;
77
	}
78
	}
78
	public void setLines(List<Line> lines) {
79
	public void setLines(List<Line> lines) {
79
		this.lines = lines;
80
		this.lines = lines;
80
	}
81
	}
-
 
82
	public void setPickupStoreId(long pickupStoreId) {
-
 
83
		this.pickupStoreId = pickupStoreId;
-
 
84
	}
-
 
85
	public long getPickupStoreId() {
-
 
86
		return pickupStoreId;
-
 
87
	}
81
	
88
	
82
}
89
}