Subversion Repositories SmartDukaan

Rev

Rev 27463 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 27463 Rev 27472
Line 1... Line 1...
1
package com.spice.profitmandi.dao.entity.fofo;
1
package com.spice.profitmandi.dao.entity.fofo;
2
 
2
 
3
import javax.persistence.Column;
3
import javax.persistence.Column;
4
import javax.persistence.Entity;
4
import javax.persistence.Entity;
-
 
5
import javax.persistence.GeneratedValue;
-
 
6
import javax.persistence.GenerationType;
5
import javax.persistence.Id;
7
import javax.persistence.Id;
6
import javax.persistence.Table;
8
import javax.persistence.Table;
7
import java.io.Serializable;
9
import java.io.Serializable;
8
 
10
 
9
@Entity
11
@Entity
10
@Table(name = "fofo.fofo_store_geofence", schema = "fofo")
12
@Table(name = "fofo.fofo_store_geofence", schema = "fofo")
11
public class FofoStoreGeofence implements Serializable {
13
public class FofoStoreGeofence implements Serializable {
12
	private static final long serialVersionUID = 1L;
14
	private static final long serialVersionUID = 1L;
13
 
15
 
14
	@Id
16
	@Id
-
 
17
	@Column(name = "id")
15
	@Column(name = "id", unique = true, updatable = false)
18
	@GeneratedValue(strategy = GenerationType.IDENTITY)
16
	private int id;
19
	private int id;
17
 
20
 
18
	@Column(name = "fofo_id")
21
	@Column(name = "fofo_id")
19
	private int fofoId;
22
	private int fofoId;
20
 
23