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_detail", schema = "fofo")
13
@Table(name = "fofo.suggested_po_detail")
14
public class SuggestedPoDetail {
14
public class SuggestedPoDetail {
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;