Subversion Repositories SmartDukaan

Rev

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

Rev 24098 Rev 24263
Line 19... Line 19...
19
	private String data;
19
	private String data;
20
 
20
 
21
	@Column(name = "created_timestamp")
21
	@Column(name = "created_timestamp")
22
	private LocalDateTime created_timestamp = LocalDateTime.now();
22
	private LocalDateTime created_timestamp = LocalDateTime.now();
23
 
23
 
-
 
24
	@Column(name = "active")
-
 
25
	private boolean active;
-
 
26
 
-
 
27
	public boolean isActive() {
-
 
28
		return active;
-
 
29
	}
-
 
30
 
-
 
31
	public void setActive(boolean active) {
-
 
32
		this.active = active;
-
 
33
	}
-
 
34
 
24
	public int getId() {
35
	public int getId() {
25
		return id;
36
		return id;
26
	}
37
	}
27
 
38
 
28
	public void setId(int id) {
39
	public void setId(int id) {
Line 45... Line 56...
45
		this.created_timestamp = created_timestamp;
56
		this.created_timestamp = created_timestamp;
46
	}
57
	}
47
 
58
 
48
	@Override
59
	@Override
49
	public String toString() {
60
	public String toString() {
50
		return "NotificationData [id=" + id + ", data=" + data + ", created_timestamp=" + created_timestamp + "]";
61
		return "NotificationData [id=" + id + ", data=" + data + ", created_timestamp=" + created_timestamp
-
 
62
				+ ", active=" + active + "]";
51
	}
63
	}
52
	
-
 
53
	
64
 
54
 
65
 
55
}
66
}