Subversion Repositories SmartDukaan

Rev

Rev 27574 | Rev 27670 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
27556 tejbeer 1
package com.spice.profitmandi.dao.model;
2
 
27591 tejbeer 3
public class BrandWisePartnerSaleModel {
27556 tejbeer 4
 
5
	private String brand;
27574 tejbeer 6
	private long lms;
7
	private long lmsQty;
8
	private long mtd;
9
	private long mtdQty;
27556 tejbeer 10
	private long lmtd;
11
	private long lmtdQty;
12
 
27591 tejbeer 13
	public BrandWisePartnerSaleModel(String brand, long lms, long lmsQty, long mtd, long mtdQty, long lmtd,
27574 tejbeer 14
			long lmtdQty) {
27556 tejbeer 15
		super();
16
		this.brand = brand;
27574 tejbeer 17
		this.lms = lms;
18
		this.lmsQty = lmsQty;
19
		this.mtd = mtd;
20
		this.mtdQty = mtdQty;
27556 tejbeer 21
		this.lmtd = lmtd;
22
		this.lmtdQty = lmtdQty;
23
	}
24
 
27574 tejbeer 25
	public long getLms() {
26
		return lms;
27
	}
28
 
29
	public void setLms(long lms) {
30
		this.lms = lms;
31
	}
32
 
33
	public long getLmsQty() {
34
		return lmsQty;
35
	}
36
 
37
	public void setLmsQty(long lmsQty) {
38
		this.lmsQty = lmsQty;
39
	}
40
 
27556 tejbeer 41
	public long getLmtdQty() {
42
		return lmtdQty;
43
	}
44
 
45
	public void setLmtdQty(long lmtdQty) {
46
		this.lmtdQty = lmtdQty;
47
	}
48
 
49
	public long getMtd() {
50
		return mtd;
51
	}
52
 
53
	public void setMtd(long mtd) {
54
		this.mtd = mtd;
55
	}
56
 
57
	public long getMtdQty() {
58
		return mtdQty;
59
	}
60
 
61
	public void setMtdQty(long mtdQty) {
62
		this.mtdQty = mtdQty;
63
	}
64
 
65
	public long getLmtd() {
66
		return lmtd;
67
	}
68
 
69
	public void setLmtd(long lmtd) {
70
		this.lmtd = lmtd;
71
	}
72
 
73
	public String getBrand() {
74
		return brand;
75
	}
76
 
77
	public void setBrand(String brand) {
78
		this.brand = brand;
79
	}
80
 
81
	@Override
82
	public String toString() {
27574 tejbeer 83
		return "WarehouseWiseBrandSaleModel [brand=" + brand + ", lms=" + lms + ", lmsQty=" + lmsQty + ", mtd=" + mtd
84
				+ ", mtdQty=" + mtdQty + ", lmtd=" + lmtd + ", lmtdQty=" + lmtdQty + "]";
27556 tejbeer 85
	}
86
 
87
}