Subversion Repositories SmartDukaan

Rev

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

Rev 28024 Rev 31860
Line 6... Line 6...
6
import javax.persistence.GenerationType;
6
import javax.persistence.GenerationType;
7
import javax.persistence.Id;
7
import javax.persistence.Id;
8
import javax.persistence.Table;
8
import javax.persistence.Table;
9
 
9
 
10
@Entity
10
@Entity
11
@Table(name = "dtr.retailer_block_brands", schema = "dtr")
11
@Table(name = "dtr.retailer_block_brands")
12
public class RetailerBlockBrands {
12
public class RetailerBlockBrands {
13
 
13
 
14
	@Id
14
	@Id
15
	@Column(name = "id", unique = false, updatable = false)
15
	@Column(name = "id", unique = false, updatable = false)
16
	@GeneratedValue(strategy = GenerationType.IDENTITY)
16
	@GeneratedValue(strategy = GenerationType.IDENTITY)