Subversion Repositories SmartDukaan

Rev

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

Rev 15272 Rev 15381
Line 3... Line 3...
3
public class MasterData{
3
public class MasterData{
4
 
4
 
5
	private long _id;
5
	private long _id;
6
	private long buyBoxFlag;
6
	private long buyBoxFlag;
7
	private long available_price;
7
	private long available_price;
-
 
8
	private long source_id;
-
 
9
	private String marketPlaceUrl;
8
 
10
 
9
	public void setBuyBoxFlag(long buyBoxFlag) {
11
	public void setBuyBoxFlag(long buyBoxFlag) {
10
		this.buyBoxFlag = buyBoxFlag;
12
		this.buyBoxFlag = buyBoxFlag;
11
	}
13
	}
12
	public long getBuyBoxFlag() {
14
	public long getBuyBoxFlag() {
Line 22... Line 24...
22
		this.available_price = available_price;
24
		this.available_price = available_price;
23
	}
25
	}
24
	public long getAvailable_price() {
26
	public long getAvailable_price() {
25
		return available_price;
27
		return available_price;
26
	}
28
	}
-
 
29
	public void setSource_id(long source_id) {
-
 
30
		this.source_id = source_id;
-
 
31
	}
-
 
32
	public long getSource_id() {
-
 
33
		return source_id;
-
 
34
	}
-
 
35
	public void setMarketPlaceUrl(String marketPlaceUrl) {
-
 
36
		this.marketPlaceUrl = marketPlaceUrl;
-
 
37
	}
-
 
38
	public String getMarketPlaceUrl() {
-
 
39
		return marketPlaceUrl;
-
 
40
	}
27
 
41
 
28
}
42
}
29
43