Subversion Repositories SmartDukaan

Rev

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

Rev 25300 Rev 25649
Line 29... Line 29...
29
	private String implementationType;
29
	private String implementationType;
30
 
30
 
31
	@Column(name = "implementation_param")
31
	@Column(name = "implementation_param")
32
	private String implementationParams;
32
	private String implementationParams;
33
 
33
 
-
 
34
	@Column(name = "is_annoucement")
-
 
35
	private boolean isAnnoucement;
-
 
36
 
-
 
37
	public boolean isAnnoucement() {
-
 
38
		return isAnnoucement;
-
 
39
	}
-
 
40
 
-
 
41
	public void setAnnoucement(boolean isAnnoucement) {
-
 
42
		this.isAnnoucement = isAnnoucement;
-
 
43
	}
-
 
44
 
34
	@Column(name = "created_timestamp")
45
	@Column(name = "created_timestamp")
35
	private LocalDateTime createdTimestamp;
46
	private LocalDateTime createdTimestamp;
36
 
47
 
37
	public LocalDateTime getCreatedTimestamp() {
48
	public LocalDateTime getCreatedTimestamp() {
38
		return createdTimestamp;
49
		return createdTimestamp;
Line 75... Line 86...
75
	}
86
	}
76
 
87
 
77
	@Override
88
	@Override
78
	public String toString() {
89
	public String toString() {
79
		return "NotificationCampaign [id=" + id + ", name=" + name + ", implementationType=" + implementationType
90
		return "NotificationCampaign [id=" + id + ", name=" + name + ", implementationType=" + implementationType
80
				+ ", implementationParams=" + implementationParams + ", createdTimestamp=" + createdTimestamp + "]";
91
				+ ", implementationParams=" + implementationParams + ", isAnnoucement=" + isAnnoucement
-
 
92
				+ ", createdTimestamp=" + createdTimestamp + "]";
81
	}
93
	}
82
 
94
 
-
 
95
 
-
 
96
 
83
}
97
}