Subversion Repositories SmartDukaan

Rev

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