Rev 27463 | Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.dao.entity.fofo;import javax.persistence.Column;import javax.persistence.Entity;import javax.persistence.Id;import javax.persistence.Table;import java.io.Serializable;@Entity@Table(name = "fofo.fofo_store_geofence", schema = "fofo")public class FofoStoreGeofence implements Serializable {private static final long serialVersionUID = 1L;@Id@Column(name = "id", unique = true, updatable = false)private int id;@Column(name = "fofoId", unique = true)private int fofoId;@Column(name = "geofence_id")private String geofenceId;public int getId() {return id;}public void setId(int id) {this.id = id;}public int getFofoId() {return fofoId;}public void setFofoId(int fofoId) {this.fofoId = fofoId;}public String getGeofenceId() {return geofenceId;}public void setGeofenceId(String geofenceId) {this.geofenceId = geofenceId;}@Overridepublic String toString() {return "FofoStoreGeofence [id=" + id + ", fofoId=" + fofoId + ", geofenceId=" + geofenceId + "]";}}