Subversion Repositories SmartDukaan

Rev

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

Rev 26733 Rev 26734
Line 23... Line 23...
23
	
23
	
24
	private static final long serialVersionUID = 1L;
24
	private static final long serialVersionUID = 1L;
25
	@Id
25
	@Id
26
	@Column(name="id", columnDefinition = "int(10) unsigned")
26
	@Column(name="id", columnDefinition = "int(10) unsigned")
27
	@GeneratedValue(strategy = GenerationType.IDENTITY)
27
	@GeneratedValue(strategy = GenerationType.IDENTITY)
-
 
28
	@JsonProperty(defaultValue="0")
28
	private int id;
29
	private int id;
29
	
30
	
30
	@Column
31
	@Column
31
	private String title;
32
	private String title;
32
	
33