added field to the JSON solr records project.oamandatepublications

This commit is contained in:
Claudio Atzori 2024-05-14 12:17:12 +02:00
parent 4a7e960409
commit f422a58b95
1 changed files with 10 additions and 0 deletions

View File

@ -18,6 +18,8 @@ public class Project implements Serializable {
private String keywords;
private String duration;
private String oamandatepublications;
private String ecarticle29_3;
private List<Subject> subjects;
@ -107,6 +109,14 @@ public class Project implements Serializable {
this.duration = duration;
}
public String getOamandatepublications() {
return oamandatepublications;
}
public void setOamandatepublications(String oamandatepublications) {
this.oamandatepublications = oamandatepublications;
}
public String getEcarticle29_3() {
return ecarticle29_3;
}