Subversion Repositories SmartDukaan

Rev

Rev 28004 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
28004 tejbeer 1
package com.spice.profitmandi.dao.model;
2
 
3
public class FofoIdQtyModel {
28020 tejbeer 4
	private int warehouseId;
28004 tejbeer 5
	private int fofoId;
6
	private long qty;
7
 
28020 tejbeer 8
	public FofoIdQtyModel(int warehouseId, int fofoId, long qty) {
28004 tejbeer 9
		super();
28020 tejbeer 10
		this.warehouseId = warehouseId;
28004 tejbeer 11
		this.fofoId = fofoId;
12
		this.qty = qty;
13
	}
14
 
15
	public int getFofoId() {
16
		return fofoId;
17
	}
18
 
19
	public void setFofoId(int fofoId) {
20
		this.fofoId = fofoId;
21
	}
22
 
23
	public long getQty() {
24
		return qty;
25
	}
26
 
27
	public void setQty(long qty) {
28
		this.qty = qty;
29
	}
30
 
28020 tejbeer 31
	public int getWarehouseId() {
32
		return warehouseId;
33
	}
34
 
35
	public void setWarehouseId(int warehouseId) {
36
		this.warehouseId = warehouseId;
37
	}
38
 
28004 tejbeer 39
	@Override
40
	public String toString() {
28020 tejbeer 41
		return "FofoIdQtyModel [warehouseId=" + warehouseId + ", fofoId=" + fofoId + ", qty=" + qty + "]";
28004 tejbeer 42
	}
43
 
44
}