Subversion Repositories SmartDukaan

Rev

Rev 26636 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 26636 Rev 31860
Line 8... Line 8...
8
import javax.persistence.GenerationType;
8
import javax.persistence.GenerationType;
9
import javax.persistence.Id;
9
import javax.persistence.Id;
10
import javax.persistence.Table;
10
import javax.persistence.Table;
11
 
11
 
12
@Entity
12
@Entity
13
@Table(name="dtr.mobileappsettings", schema = "dtr")
13
@Table(name="dtr.mobileappsettings")
14
public class MobileAppSetting {
14
public class MobileAppSetting {
15
	@Id
15
	@Id
16
	@Column(name="id", unique=true, updatable=false)
16
	@Column(name="id", unique=true, updatable=false)
17
	@GeneratedValue(strategy = GenerationType.IDENTITY)
17
	@GeneratedValue(strategy = GenerationType.IDENTITY)
18
	private int id;
18
	private int id;