Subversion Repositories SmartDukaan

Rev

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

Rev 25721 Rev 31860
Line 10... Line 10...
10
import javax.persistence.GenerationType;
10
import javax.persistence.GenerationType;
11
import javax.persistence.Id;
11
import javax.persistence.Id;
12
import javax.persistence.Table;
12
import javax.persistence.Table;
13
 
13
 
14
@Entity
14
@Entity
15
@Table(name = "fofo.monthly_planned", schema = "fofo")
15
@Table(name = "fofo.monthly_planned")
16
public class MonthlyPlanned {
16
public class MonthlyPlanned {
17
 
17
 
18
	@Id
18
	@Id
19
	@Column(name = "id", unique = true, updatable = false)
19
	@Column(name = "id", unique = true, updatable = false)
20
	@GeneratedValue(strategy = GenerationType.IDENTITY)
20
	@GeneratedValue(strategy = GenerationType.IDENTITY)