Subversion Repositories SmartDukaan

Rev

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

Rev 15381 Rev 15384
Line 5... Line 5...
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;
8
	private long source_id;
9
	private String marketPlaceUrl;
9
	private String marketPlaceUrl;
-
 
10
	private String source_product_name;
10
 
11
 
11
	public void setBuyBoxFlag(long buyBoxFlag) {
12
	public void setBuyBoxFlag(long buyBoxFlag) {
12
		this.buyBoxFlag = buyBoxFlag;
13
		this.buyBoxFlag = buyBoxFlag;
13
	}
14
	}
14
	public long getBuyBoxFlag() {
15
	public long getBuyBoxFlag() {
Line 36... Line 37...
36
		this.marketPlaceUrl = marketPlaceUrl;
37
		this.marketPlaceUrl = marketPlaceUrl;
37
	}
38
	}
38
	public String getMarketPlaceUrl() {
39
	public String getMarketPlaceUrl() {
39
		return marketPlaceUrl;
40
		return marketPlaceUrl;
40
	}
41
	}
-
 
42
	public void setSource_product_name(String source_product_name) {
-
 
43
		this.source_product_name = source_product_name;
-
 
44
	}
-
 
45
	public String getSource_product_name() {
-
 
46
		return source_product_name;
-
 
47
	}
41
 
48
 
42
}
49
}
43
50