Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
18150 kshitij.so 1
package in.shop2020.catalog.dashboard.shared;
2
 
3
import java.io.Serializable;
4
import java.util.Date;
5
import com.google.gwt.user.client.rpc.IsSerializable;
6
 
7
public class BulkItemPricing implements IsSerializable, Serializable {
8
 
9
	private long id;
10
	private long item_id;
11
	private long quantity;
12
	private double price;
13
 
14
	public BulkItemPricing(long id, long item_id, long quantity, double price) {
15
		this.id = id;
16
		this.item_id = item_id;
17
		this.quantity = quantity;
18
		this.price = price;
19
	}
20
 
21
	public BulkItemPricing(){
22
 
23
	}
24
 
25
	public long getId() {
26
		return id;
27
	}
28
	public void setId(long id) {
29
		this.id = id;
30
	}
31
	public long getItem_id() {
32
		return item_id;
33
	}
34
	public void setItem_id(long item_id) {
35
		this.item_id = item_id;
36
	}
37
	public long getQuantity() {
38
		return quantity;
39
	}
40
	public void setQuantity(long quantity) {
41
		this.quantity = quantity;
42
	}
43
	public double getPrice() {
44
		return price;
45
	}
46
	public void setPrice(double price) {
47
		this.price = price;
48
	}
49
 
50
 
51
 
52
}