Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
24107 govind 1
package com.spice.profitmandi.common.model;
2
 
3
public class PartnerTargetModel {
4
 
5
	private int fofoId;
6
	private String storeName;
7
	private String email;
8
	private float targetValue;
9
	public int getFofoId() {
10
		return fofoId;
11
	}
12
	public void setFofoId(int fofoId) {
13
		this.fofoId = fofoId;
14
	}
15
	public String getStoreName() {
16
		return storeName;
17
	}
18
	public void setStoreName(String storeName) {
19
		this.storeName = storeName;
20
	}
21
	public String getEmail() {
22
		return email;
23
	}
24
	public void setEmail(String email) {
25
		this.email = email;
26
	}
27
	public float getTargetValue() {
28
		return targetValue;
29
	}
30
	public void setTargetValue(float targetValue) {
31
		this.targetValue = targetValue;
32
	}
33
 
34
}