Subversion Repositories SmartDukaan

Rev

Rev 27591 | Rev 27676 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 27591 Rev 27670
Line 7... Line 7...
7
	private long lmsQty;
7
	private long lmsQty;
8
	private long mtd;
8
	private long mtd;
9
	private long mtdQty;
9
	private long mtdQty;
10
	private long lmtd;
10
	private long lmtd;
11
	private long lmtdQty;
11
	private long lmtdQty;
-
 
12
	private long amtd;
-
 
13
 
-
 
14
	public BrandWisePartnerSaleModel() {
-
 
15
		super();
-
 
16
	}
12
 
17
 
13
	public BrandWisePartnerSaleModel(String brand, long lms, long lmsQty, long mtd, long mtdQty, long lmtd,
18
	public BrandWisePartnerSaleModel(String brand, long lms, long lmsQty, long mtd, long mtdQty, long lmtd,
14
			long lmtdQty) {
19
			long lmtdQty) {
15
		super();
20
		super();
16
		this.brand = brand;
21
		this.brand = brand;
Line 20... Line 25...
20
		this.mtdQty = mtdQty;
25
		this.mtdQty = mtdQty;
21
		this.lmtd = lmtd;
26
		this.lmtd = lmtd;
22
		this.lmtdQty = lmtdQty;
27
		this.lmtdQty = lmtdQty;
23
	}
28
	}
24
 
29
 
-
 
30
	public long getAmtd() {
-
 
31
		return amtd;
-
 
32
	}
-
 
33
 
-
 
34
	public void setAmtd(long amtd) {
-
 
35
		this.amtd = amtd;
-
 
36
	}
-
 
37
 
25
	public long getLms() {
38
	public long getLms() {
26
		return lms;
39
		return lms;
27
	}
40
	}
28
 
41
 
29
	public void setLms(long lms) {
42
	public void setLms(long lms) {
Line 78... Line 91...
78
		this.brand = brand;
91
		this.brand = brand;
79
	}
92
	}
80
 
93
 
81
	@Override
94
	@Override
82
	public String toString() {
95
	public String toString() {
83
		return "WarehouseWiseBrandSaleModel [brand=" + brand + ", lms=" + lms + ", lmsQty=" + lmsQty + ", mtd=" + mtd
96
		return "BrandWisePartnerSaleModel [brand=" + brand + ", lms=" + lms + ", lmsQty=" + lmsQty + ", mtd=" + mtd
84
				+ ", mtdQty=" + mtdQty + ", lmtd=" + lmtd + ", lmtdQty=" + lmtdQty + "]";
97
				+ ", mtdQty=" + mtdQty + ", lmtd=" + lmtd + ", lmtdQty=" + lmtdQty + ", amtd=" + amtd + "]";
85
	}
98
	}
86
 
99
 
87
}
100
}