Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
11671 vikram.rag 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 PrivateDeal implements IsSerializable, Serializable {
8
	long item_id;
9
    long dealFreebieItemId;
10
    double dealPrice;
11
    Long startDate;
12
    Long endDate;
13
    Long dealTextOption;
14
    String dealText; 
15
    boolean isCod;
16
    Long rank;
17
    Long dealFreebieOption;
18
    boolean isActive;
19
    public boolean isActive() {
20
		return isActive;
21
	}
22
	public void setActive(boolean isActive) {
23
		this.isActive = isActive;
24
	}
25
	private static final long serialVersionUID = -2982668732181652699L;
26
	public long getItem_id() {
27
		return item_id;
28
	}
29
	public void setItem_id(long item_id) {
30
		this.item_id = item_id;
31
	}
32
	public long getDealFreebieItemId() {
33
		return dealFreebieItemId;
34
	}
35
	public void setDealFreebieItemId(long dealFreebieItemId) {
36
		this.dealFreebieItemId = dealFreebieItemId;
37
	}
38
	public double getDealPrice() {
39
		return dealPrice;
40
	}
41
	public void setDealPrice(double dealPrice) {
42
		this.dealPrice = dealPrice;
43
	}
44
	public Long getStartDate() {
45
		return startDate;
46
	}
47
	public void setStartDate(Long startDate) {
48
		this.startDate = startDate;
49
	}
50
	public Long getEndDate() {
51
		return endDate;
52
	}
53
	public void setEndDate(Long endDate) {
54
		this.endDate = endDate;
55
	}
56
	public String getDealText() {
57
		return dealText;
58
	}
59
	public void setDealText(String dealText) {
60
		this.dealText = dealText;
61
	}
62
	public boolean isCod() {
63
		return isCod;
64
	}
65
	public void setCod(boolean isCod) {
66
		this.isCod = isCod;
67
	}
68
	public Long getRank() {
69
		return rank;
70
	}
71
	public void setRank(Long rank) {
72
		this.rank = rank;
73
	}
74
	public Long getDealTextOption() {
75
		return dealTextOption;
76
	}
77
	public void setDealTextOption(Long dealTextOption) {
78
		this.dealTextOption = dealTextOption;
79
	}
80
	public Long getDealFreebieOption() {
81
		return dealFreebieOption;
82
	}
83
	public void setDealFreebieOption(Long dealFreebieOption) {
84
		this.dealFreebieOption = dealFreebieOption;
85
	}
86
}