Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

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