Subversion Repositories SmartDukaan

Rev

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

Rev 23638 Rev 23639
Line 39... Line 39...
39
	@Id
39
	@Id
40
	@Column(name="id", columnDefinition = "int(11)")
40
	@Column(name="id", columnDefinition = "int(11)")
41
	@GeneratedValue(strategy = GenerationType.IDENTITY)
41
	@GeneratedValue(strategy = GenerationType.IDENTITY)
42
	private int id;
42
	private int id;
43
	
43
	
-
 
44
	@Column(name="id", columnDefinition = "int(11)")
44
	public int getId() {
45
	public int getId() {
45
		return id;
46
		return id;
46
	}
47
	}
47
	
48
	
-
 
49
 
-
 
50
	@Column(name = "status")
-
 
51
	@Enumerated(EnumType.STRING)
48
	private ReturnType returnType;
52
	private ReturnType returnType;
49
	
53
	
50
	public ReturnType getReturnType() {
54
	public ReturnType getReturnType() {
51
		return returnType;
55
		return returnType;
52
	}
56
	}