Subversion Repositories SmartDukaan

Rev

Rev 25155 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
24995 amit.gupta 1
package com.spice.profitmandi.common.model;
2
 
3
public class BrandStockPrice {
4
	private String brand;
5
	private int totalQty;
6
	private double totalValue;
7
	private String brandUrl;
8
	private int rank;
9
	@Override
10
	public String toString() {
11
		return "BrandStockPrice [brand=" + brand + ", totalQty=" + totalQty + ", totalValue=" + totalValue
12
				+ ", brandUrl=" + brandUrl + ", rank=" + rank + "]";
13
	}
14
 
15
	public String getBrandUrl() {
16
		return brandUrl;
17
	}
18
 
19
	public void setBrandUrl(String brandUrl) {
20
		this.brandUrl = brandUrl;
21
	}
22
 
23
	public int getRank() {
24
		return rank;
25
	}
26
 
27
	public void setRank(int rank) {
28
		this.rank = rank;
29
	}
30
 
31
	public String getBrand() {
32
		return brand;
33
	}
34
	public void setBrand(String brand) {
35
		this.brand = brand;
36
	}
37
	public int getTotalQty() {
38
		return totalQty;
39
	}
40
	public void setTotalQty(int totalQty) {
41
		this.totalQty = totalQty;
42
	}
43
	public double getTotalValue() {
44
		return totalValue;
45
	}
46
	public void setTotalValue(double totalValue) {
47
		this.totalValue = totalValue;
48
	}
49
 
50
 
51
 
52
}