View as "text/plain" | Blame | Last modification | View Log | RSS feed
package com.spice.profitmandi.dao.model;import java.util.Date;public class RetailerFofoInterest {int userId;Date interestShownOn;String emai;String mobile;String city;String state;int pinCode;public int getUserId() {return userId;}public void setUserId(int userId) {this.userId = userId;}public Date getInterestShownOn() {return interestShownOn;}public void setInterestShownOn(Date interestShownOn) {this.interestShownOn = interestShownOn;}public String getEmai() {return emai;}public void setEmai(String emai) {this.emai = emai;}public String getMobile() {return mobile;}public void setMobile(String mobile) {this.mobile = mobile;}public String getCity() {return city;}public void setCity(String city) {this.city = city;}public String getState() {return state;}public void setState(String state) {this.state = state;}public int getPinCode() {return pinCode;}public void setPinCode(int pinCode) {this.pinCode = pinCode;}}