Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
22496 amit.gupta 1
package com.spice.profitmandi.dao.model;
2
 
3
import java.util.Date;
4
 
5
public class RetailerFofoInterest {
6
	int userId;
7
	Date interestShownOn;
8
	String emai;
9
	String mobile;
10
	String city;
11
	String state;
12
	int pinCode;
13
 
14
 
15
	public int getUserId() {
16
		return userId;
17
	}
18
	public void setUserId(int userId) {
19
		this.userId = userId;
20
	}
21
	public Date getInterestShownOn() {
22
		return interestShownOn;
23
	}
24
	public void setInterestShownOn(Date interestShownOn) {
25
		this.interestShownOn = interestShownOn;
26
	}
27
	public String getEmai() {
28
		return emai;
29
	}
30
	public void setEmai(String emai) {
31
		this.emai = emai;
32
	}
33
	public String getMobile() {
34
		return mobile;
35
	}
36
	public void setMobile(String mobile) {
37
		this.mobile = mobile;
38
	}
39
	public String getCity() {
40
		return city;
41
	}
42
	public void setCity(String city) {
43
		this.city = city;
44
	}
45
	public String getState() {
46
		return state;
47
	}
48
	public void setState(String state) {
49
		this.state = state;
50
	}
51
	public int getPinCode() {
52
		return pinCode;
53
	}
54
	public void setPinCode(int pinCode) {
55
		this.pinCode = pinCode;
56
	}
57
}