Subversion Repositories SmartDukaan

Rev

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

Rev 31507 Rev 31860
Line 9... Line 9...
9
import javax.persistence.Id;
9
import javax.persistence.Id;
10
import javax.persistence.Table;
10
import javax.persistence.Table;
11
import javax.persistence.Transient;
11
import javax.persistence.Transient;
12
 
12
 
13
@Entity
13
@Entity
14
@Table(name = "catalog.brand", schema = "catalog")
14
@Table(name = "catalog.brand")
15
public class BrandCatalog {
15
public class BrandCatalog {
16
 
16
 
17
	@Id
17
	@Id
18
	@GeneratedValue(strategy = GenerationType.IDENTITY)
18
	@GeneratedValue(strategy = GenerationType.IDENTITY)
19
	@Column(name = "id", columnDefinition = "int(11)")
19
	@Column(name = "id", columnDefinition = "int(11)")