|
|
@@ -22,6 +22,8 @@ public class Communication {
|
|
|
|
|
|
private Long publisherId;
|
|
|
|
|
|
+ private String publisherName;
|
|
|
+
|
|
|
private String title;
|
|
|
|
|
|
@Column
|
|
|
@@ -64,6 +66,15 @@ public class Communication {
|
|
|
return this;
|
|
|
}
|
|
|
|
|
|
+ public String getPublisherName() {
|
|
|
+ return publisherName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Communication setPublisherName(String publisherName) {
|
|
|
+ this.publisherName = publisherName;
|
|
|
+ return this;
|
|
|
+ }
|
|
|
+
|
|
|
public Long getPublisherId() {
|
|
|
return publisherId;
|
|
|
}
|