Subversion Repositories SmartDukaan

Rev

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

Rev 27867 Rev 27893
Line 1... Line 1...
1
package com.spice.profitmandi.dao.model;
1
package com.spice.profitmandi.dao.model;
2
 
2
 
3
public class BrandRegionModel {
3
public class BrandRegionModel {
4
	private int warehouseId;
4
	private int warehouseId;
5
	private String brand;
5
	private String brand;
6
	private long total;
6
	private int total;
-
 
7
	private int qty;
7
 
8
 
-
 
9
	public int getQty() {
-
 
10
		return qty;
-
 
11
	}
-
 
12
 
-
 
13
	public void setQty(int qty) {
-
 
14
		this.qty = qty;
-
 
15
	}
-
 
16
 
8
	public long getTotal() {
17
	public int getTotal() {
9
		return total;
18
		return total;
10
	}
19
	}
11
 
20
 
12
	public void setTotal(long total) {
21
	public void setTotal(int total) {
13
		this.total = total;
22
		this.total = total;
14
	}
23
	}
15
 
24
 
16
	public BrandRegionModel(int warehouseId, String brand) {
25
	public BrandRegionModel(int warehouseId, String brand) {
17
		super();
26
		super();
Line 63... Line 72...
63
		this.brand = brand;
72
		this.brand = brand;
64
	}
73
	}
65
 
74
 
66
	@Override
75
	@Override
67
	public String toString() {
76
	public String toString() {
68
		return "BrandRegionModel [warehouseId=" + warehouseId + ", brand=" + brand + ", total=" + total + "]";
77
		return "BrandRegionModel [warehouseId=" + warehouseId + ", brand=" + brand + ", total=" + total + ", qty=" + qty
-
 
78
				+ "]";
69
	}
79
	}
70
 
80
 
71
}
81
}