Subversion Repositories SmartDukaan

Rev

Rev 27591 | Rev 27676 | 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;
27670 tejbeer 12
	private long amtd;
27556 tejbeer 13
 
27670 tejbeer 14
	public BrandWisePartnerSaleModel() {
15
		super();
16
	}
17
 
27591 tejbeer 18
	public BrandWisePartnerSaleModel(String brand, long lms, long lmsQty, long mtd, long mtdQty, long lmtd,
27574 tejbeer 19
			long lmtdQty) {
27556 tejbeer 20
		super();
21
		this.brand = brand;
27574 tejbeer 22
		this.lms = lms;
23
		this.lmsQty = lmsQty;
24
		this.mtd = mtd;
25
		this.mtdQty = mtdQty;
27556 tejbeer 26
		this.lmtd = lmtd;
27
		this.lmtdQty = lmtdQty;
28
	}
29
 
27670 tejbeer 30
	public long getAmtd() {
31
		return amtd;
32
	}
33
 
34
	public void setAmtd(long amtd) {
35
		this.amtd = amtd;
36
	}
37
 
27574 tejbeer 38
	public long getLms() {
39
		return lms;
40
	}
41
 
42
	public void setLms(long lms) {
43
		this.lms = lms;
44
	}
45
 
46
	public long getLmsQty() {
47
		return lmsQty;
48
	}
49
 
50
	public void setLmsQty(long lmsQty) {
51
		this.lmsQty = lmsQty;
52
	}
53
 
27556 tejbeer 54
	public long getLmtdQty() {
55
		return lmtdQty;
56
	}
57
 
58
	public void setLmtdQty(long lmtdQty) {
59
		this.lmtdQty = lmtdQty;
60
	}
61
 
62
	public long getMtd() {
63
		return mtd;
64
	}
65
 
66
	public void setMtd(long mtd) {
67
		this.mtd = mtd;
68
	}
69
 
70
	public long getMtdQty() {
71
		return mtdQty;
72
	}
73
 
74
	public void setMtdQty(long mtdQty) {
75
		this.mtdQty = mtdQty;
76
	}
77
 
78
	public long getLmtd() {
79
		return lmtd;
80
	}
81
 
82
	public void setLmtd(long lmtd) {
83
		this.lmtd = lmtd;
84
	}
85
 
86
	public String getBrand() {
87
		return brand;
88
	}
89
 
90
	public void setBrand(String brand) {
91
		this.brand = brand;
92
	}
93
 
94
	@Override
95
	public String toString() {
27670 tejbeer 96
		return "BrandWisePartnerSaleModel [brand=" + brand + ", lms=" + lms + ", lmsQty=" + lmsQty + ", mtd=" + mtd
97
				+ ", mtdQty=" + mtdQty + ", lmtd=" + lmtd + ", lmtdQty=" + lmtdQty + ", amtd=" + amtd + "]";
27556 tejbeer 98
	}
99
 
100
}