Subversion Repositories SmartDukaan

Rev

Rev 21730 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
21443 kshitij.so 1
package com.spice.profitmandi.web.res;
2
 
3
public class LivePricingResponse {
4
 
5
	private long _id; 
6
	private double available_price; 
7
	private String marketPlaceUrl; 
8
	private long in_stock; 
9
	private long source_id; 
10
	private String source_product_name; 
11
	private long cash_back_type; 
12
	private double cash_back; 
13
	private String coupon; 
14
	private long codAvailable; 
15
	private String tagline; 
16
	private String offer; 
17
	private double gross_price; 
18
	private double cheapestBulkPrice; 
19
	private long packQuantity; 
20
	private double netPriceAfterCashBack; 
21
	private long showNetPrice; 
22
	private long category_id;
23
	private long subCategoryId;
24
	private String identifier;
25
 
26
	public String getIdentifier() {
27
		return identifier;
28
	}
29
	public void setIdentifier(String identifier) {
30
		this.identifier = identifier;
31
	}
32
	public long get_id() {
33
		return _id;
34
	}
35
	public void set_id(long _id) {
36
		this._id = _id;
37
	}
38
	public double getAvailable_price() {
39
		return available_price;
40
	}
41
	public void setAvailable_price(double available_price) {
42
		this.available_price = available_price;
43
	}
44
	public String getMarketPlaceUrl() {
45
		return marketPlaceUrl;
46
	}
47
	public void setMarketPlaceUrl(String marketPlaceUrl) {
48
		this.marketPlaceUrl = marketPlaceUrl;
49
	}
50
	public long getIn_stock() {
51
		return in_stock;
52
	}
53
	public void setIn_stock(long in_stock) {
54
		this.in_stock = in_stock;
55
	}
56
	public long getSource_id() {
57
		return source_id;
58
	}
59
	public void setSource_id(long source_id) {
60
		this.source_id = source_id;
61
	}
62
	public String getSource_product_name() {
63
		return source_product_name;
64
	}
65
	public void setSource_product_name(String source_product_name) {
66
		this.source_product_name = source_product_name;
67
	}
68
	public long getCash_back_type() {
69
		return cash_back_type;
70
	}
71
	public void setCash_back_type(long cash_back_type) {
72
		this.cash_back_type = cash_back_type;
73
	}
74
	public double getCash_back() {
75
		return cash_back;
76
	}
77
	public void setCash_back(double cash_back) {
78
		this.cash_back = cash_back;
79
	}
80
	public String getCoupon() {
81
		return coupon;
82
	}
83
	public void setCoupon(String coupon) {
84
		this.coupon = coupon;
85
	}
86
	public long getCodAvailable() {
87
		return codAvailable;
88
	}
89
	public void setCodAvailable(long codAvailable) {
90
		this.codAvailable = codAvailable;
91
	}
92
	public String getTagline() {
93
		return tagline;
94
	}
95
	public void setTagline(String tagline) {
96
		this.tagline = tagline;
97
	}
98
	public String getOffer() {
99
		return offer;
100
	}
101
	public void setOffer(String offer) {
102
		this.offer = offer;
103
	}
104
	public double getGross_price() {
105
		return gross_price;
106
	}
107
	public void setGross_price(double gross_price) {
108
		this.gross_price = gross_price;
109
	}
110
	public double getCheapestBulkPrice() {
111
		return cheapestBulkPrice;
112
	}
113
	public void setCheapestBulkPrice(double cheapestBulkPrice) {
114
		this.cheapestBulkPrice = cheapestBulkPrice;
115
	}
116
	public long getPackQuantity() {
117
		return packQuantity;
118
	}
119
	public void setPackQuantity(long packQuantity) {
120
		this.packQuantity = packQuantity;
121
	}
122
	public double getNetPriceAfterCashBack() {
123
		return netPriceAfterCashBack;
124
	}
125
	public void setNetPriceAfterCashBack(double netPriceAfterCashBack) {
126
		this.netPriceAfterCashBack = netPriceAfterCashBack;
127
	}
128
	public long getShowNetPrice() {
129
		return showNetPrice;
130
	}
131
	public void setShowNetPrice(long showNetPrice) {
132
		this.showNetPrice = showNetPrice;
133
	}
134
	public long getCategory_id() {
135
		return category_id;
136
	}
137
	public void setCategory_id(long category_id) {
138
		this.category_id = category_id;
139
	}
140
	public long getSubCategoryId() {
141
		return subCategoryId;
142
	}
143
	public void setSubCategoryId(long subCategoryId) {
144
		this.subCategoryId = subCategoryId;
145
	}
146
}