Subversion Repositories SmartDukaan

Rev

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

Rev 31860 Rev 36528
Line 25... Line 25...
25
	private int campaignId;
25
	private int campaignId;
26
 
26
 
27
	@Column(name = "pushTimestamp")
27
	@Column(name = "pushTimestamp")
28
	private LocalDateTime pushTimestamp;
28
	private LocalDateTime pushTimestamp;
29
 
29
 
-
 
30
	@Column(name = "read_timestamp")
-
 
31
	private LocalDateTime readTimestamp;
-
 
32
 
30
	public int getId() {
33
	public int getId() {
31
		return id;
34
		return id;
32
	}
35
	}
33
 
36
 
34
	public void setId(int id) {
37
	public void setId(int id) {
Line 57... Line 60...
57
 
60
 
58
	public void setPushTimestamp(LocalDateTime pushTimestamp) {
61
	public void setPushTimestamp(LocalDateTime pushTimestamp) {
59
		this.pushTimestamp = pushTimestamp;
62
		this.pushTimestamp = pushTimestamp;
60
	}
63
	}
61
 
64
 
-
 
65
	public LocalDateTime getReadTimestamp() {
-
 
66
		return readTimestamp;
-
 
67
	}
-
 
68
 
-
 
69
	public void setReadTimestamp(LocalDateTime readTimestamp) {
-
 
70
		this.readTimestamp = readTimestamp;
-
 
71
	}
-
 
72
 
62
	@Override
73
	@Override
63
	public String toString() {
74
	public String toString() {
64
		return "UserCampaign [id=" + id + ", userId=" + userId + ", campaignId=" + campaignId + ", pushTimestamp="
75
		return "UserCampaign [id=" + id + ", userId=" + userId + ", campaignId=" + campaignId + ", pushTimestamp="
65
				+ pushTimestamp + "]";
76
				+ pushTimestamp + "]";
66
	}
77
	}