Subversion Repositories SmartDukaan

Rev

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

Rev 31491 Rev 31492
Line 12... Line 12...
12
@Entity
12
@Entity
13
@Table(name = "catalog.brand", schema = "catalog")
13
@Table(name = "catalog.brand", schema = "catalog")
14
public class BrandCatalog {
14
public class BrandCatalog {
15
 
15
 
16
	@Id
16
	@Id
17
	@Column(name = "id", columnDefinition = "int(11)")
-
 
18
	@GeneratedValue(strategy = GenerationType.IDENTITY)
17
	@GeneratedValue(strategy = GenerationType.IDENTITY)
-
 
18
	@Column(name = "id", columnDefinition = "int(11)")
19
	private int id;
19
	private int id;
20
 
20
 
21
	@Column(name = "name")
21
	@Column(name = "name")
22
	private String name;
22
	private String name;
23
 
23