Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

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