Subversion Repositories SmartDukaan

Rev

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

Rev 26846 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 = "fofo.suggested_po", schema = "fofo")
13
@Table(name = "fofo.suggested_po")
14
public class SuggestedPo {
14
public class SuggestedPo {
15
 
15
 
16
	@Id
16
	@Id
17
	@Column(name = "id", unique = true, updatable = false)
17
	@Column(name = "id", unique = true, updatable = false)
18
	@GeneratedValue(strategy = GenerationType.IDENTITY)
18
	@GeneratedValue(strategy = GenerationType.IDENTITY)