Subversion Repositories SmartDukaan

Rev

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

Rev 25155 Rev 31884
Line 1... Line 1...
1
package com.spice.profitmandi.common.model;
1
package com.spice.profitmandi.common.model;
2
 
2
 
3
public class BrandStockPrice {
3
public class BrandStockPrice {
4
	private String brand;
4
    private String brand;
5
	private int totalQty;
5
    private int totalQty;
6
	private double totalValue;
6
    private double totalValue;
7
	private double agedValue;
7
    private double agedValue;
8
	private int agedQty;
8
    private int agedQty;
-
 
9
    private String color;
-
 
10
 
-
 
11
    public String getColor() {
-
 
12
        return color;
-
 
13
    }
-
 
14
 
-
 
15
    public void setColor(String color) {
-
 
16
        this.color = color;
-
 
17
    }
-
 
18
 
9
	public double getAgedValue() {
19
    public double getAgedValue() {
10
		return agedValue;
20
        return agedValue;
11
	}
21
    }
12
 
22
 
13
	public void setAgedValue(double agedValue) {
23
    public void setAgedValue(double agedValue) {
14
		this.agedValue = agedValue;
24
        this.agedValue = agedValue;
15
	}
25
    }
16
 
26
 
17
	public int getAgedQty() {
27
    public int getAgedQty() {
18
		return agedQty;
28
        return agedQty;
19
	}
29
    }
20
 
30
 
21
	public void setAgedQty(int agedQty) {
31
    public void setAgedQty(int agedQty) {
22
		this.agedQty = agedQty;
32
        this.agedQty = agedQty;
-
 
33
    }
23
	}
34
 
24
	private String brandUrl;
35
    private String brandUrl;
25
	private int rank;
36
    private int rank;
-
 
37
 
26
	@Override
38
    @Override
27
	public String toString() {
39
    public String toString() {
28
		return "BrandStockPrice [brand=" + brand + ", totalQty=" + totalQty + ", totalValue=" + totalValue
-
 
29
				+ ", agedValue=" + agedValue + ", agedQty=" + agedQty + ", brandUrl=" + brandUrl + ", rank=" + rank
40
        return "BrandStockPrice [brand=" + brand + ", totalQty=" + totalQty + ", totalValue=" + totalValue + ", agedValue=" + agedValue + ", agedQty=" + agedQty + ", brandUrl=" + brandUrl + ", rank=" + rank + "]";
30
				+ "]";
-
 
31
	}
41
    }
32
	
42
 
33
	public String getBrandUrl() {
43
    public String getBrandUrl() {
34
		return brandUrl;
44
        return brandUrl;
35
	}
45
    }
36
 
46
 
37
	public void setBrandUrl(String brandUrl) {
47
    public void setBrandUrl(String brandUrl) {
38
		this.brandUrl = brandUrl;
48
        this.brandUrl = brandUrl;
39
	}
49
    }
40
 
50
 
41
	public int getRank() {
51
    public int getRank() {
42
		return rank;
52
        return rank;
43
	}
53
    }
44
 
54
 
45
	public void setRank(int rank) {
55
    public void setRank(int rank) {
46
		this.rank = rank;
56
        this.rank = rank;
47
	}
57
    }
48
 
58
 
49
	public String getBrand() {
59
    public String getBrand() {
50
		return brand;
60
        return brand;
-
 
61
    }
51
	}
62
 
52
	public void setBrand(String brand) {
63
    public void setBrand(String brand) {
53
		this.brand = brand;
64
        this.brand = brand;
-
 
65
    }
54
	}
66
 
55
	public int getTotalQty() {
67
    public int getTotalQty() {
56
		return totalQty;
68
        return totalQty;
-
 
69
    }
57
	}
70
 
58
	public void setTotalQty(int totalQty) {
71
    public void setTotalQty(int totalQty) {
59
		this.totalQty = totalQty;
72
        this.totalQty = totalQty;
-
 
73
    }
60
	}
74
 
61
	public double getTotalValue() {
75
    public double getTotalValue() {
62
		return totalValue;
76
        return totalValue;
-
 
77
    }
63
	}
78
 
64
	public void setTotalValue(double totalValue) {
79
    public void setTotalValue(double totalValue) {
65
		this.totalValue = totalValue;
80
        this.totalValue = totalValue;
66
	}
81
    }
67
	
-
 
68
	
82
 
69
 
83
 
70
}
84
}