Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
14752 manish.sha 1
package in.shop2020.warehouse.util;
2
 
3
public class InventoryMismatchUnit{
4
	private long itemId;
5
	private long physicalWarehouseId;
6
	private String brand;
7
	private String modelName;
8
	private String modelNumber;
9
	private String color;
10
	private long quantityAsPerScans;
11
	private long quantityAsPerCatalog;
12
 
13
	public long getItemId() {
14
		return itemId;
15
	}
16
	public void setItemId(long itemId) {
17
		this.itemId = itemId;
18
	}
19
	public long getPhysicalWarehouseId() {
20
		return physicalWarehouseId;
21
	}
22
	public void setPhysicalWarehouseId(long physicalWarehouseId) {
23
		this.physicalWarehouseId = physicalWarehouseId;
24
	}
25
	public String getBrand() {
26
		return brand;
27
	}
28
	public void setBrand(String brand) {
29
		this.brand = brand;
30
	}
31
	public String getModelName() {
32
		return modelName;
33
	}
34
	public void setModelName(String modelName) {
35
		this.modelName = modelName;
36
	}
37
	public String getModelNumber() {
38
		return modelNumber;
39
	}
40
	public void setModelNumber(String modelNumber) {
41
		this.modelNumber = modelNumber;
42
	}
43
	public String getColor() {
44
		return color;
45
	}
46
	public void setColor(String color) {
47
		this.color = color;
48
	}
49
	public long getQuantityAsPerScans() {
50
		return quantityAsPerScans;
51
	}
52
	public void setQuantityAsPerScans(long quantityAsPerScans) {
53
		this.quantityAsPerScans = quantityAsPerScans;
54
	}
55
	public long getQuantityAsPerCatalog() {
56
		return quantityAsPerCatalog;
57
	}
58
	public void setQuantityAsPerCatalog(long quantityAsPerCatalog) {
59
		this.quantityAsPerCatalog = quantityAsPerCatalog;
60
	}
61
 
62
 
63
}