Subversion Repositories SmartDukaan

Rev

Rev 27462 | Rev 27472 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
27462 tejbeer 1
package com.spice.profitmandi.dao.entity.fofo;
2
 
3
import javax.persistence.Column;
4
import javax.persistence.Entity;
5
import javax.persistence.Id;
6
import javax.persistence.Table;
7
import java.io.Serializable;
8
 
9
@Entity
10
@Table(name = "fofo.fofo_store_geofence", schema = "fofo")
11
public class FofoStoreGeofence implements Serializable {
12
	private static final long serialVersionUID = 1L;
13
 
14
	@Id
15
	@Column(name = "id", unique = true, updatable = false)
16
	private int id;
17
 
27463 tejbeer 18
	@Column(name = "fofo_id")
27462 tejbeer 19
	private int fofoId;
20
 
21
	@Column(name = "geofence_id")
22
	private String geofenceId;
23
 
24
	public int getId() {
25
		return id;
26
	}
27
 
28
	public void setId(int id) {
29
		this.id = id;
30
	}
31
 
32
	public int getFofoId() {
33
		return fofoId;
34
	}
35
 
36
	public void setFofoId(int fofoId) {
37
		this.fofoId = fofoId;
38
	}
39
 
40
	public String getGeofenceId() {
41
		return geofenceId;
42
	}
43
 
44
	public void setGeofenceId(String geofenceId) {
45
		this.geofenceId = geofenceId;
46
	}
47
 
48
	@Override
49
	public String toString() {
50
		return "FofoStoreGeofence [id=" + id + ", fofoId=" + fofoId + ", geofenceId=" + geofenceId + "]";
51
	}
52
 
53
}