Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
25721 tejbeer 1
package com.spice.profitmandi.common.model;
2
 
3
public class PlannedModel {
4
 
5
	private String itemDescription;
6
	private int qty;
7
	private int fofoId;
8
	private String storeName;
9
 
10
	public String getStoreName() {
11
		return storeName;
12
	}
13
 
14
	public void setStoreName(String storeName) {
15
		this.storeName = storeName;
16
	}
17
 
18
	public int getFofoId() {
19
		return fofoId;
20
	}
21
 
22
	public void setFofoId(int fofoId) {
23
		this.fofoId = fofoId;
24
	}
25
 
26
	public String getItemDescription() {
27
		return itemDescription;
28
	}
29
 
30
	public void setItemDescription(String itemDescription) {
31
		this.itemDescription = itemDescription;
32
	}
33
 
34
	public int getQty() {
35
		return qty;
36
	}
37
 
38
	public void setQty(int qty) {
39
		this.qty = qty;
40
	}
41
 
42
}