number, date to common blueprint value

This commit is contained in:
amentis 2024-05-24 12:34:17 +03:00
parent ffc77189ec
commit 4a43659ccc
1 changed files with 20 additions and 0 deletions

View File

@ -1,5 +1,6 @@
package org.opencdmp.commonmodels.models.dmp;
import java.time.Instant;
import java.util.UUID;
public class DmpBlueprintValueModel {
@ -8,6 +9,10 @@ public class DmpBlueprintValueModel {
private String value;
private Instant dateValue;
private Double numberValue;
public UUID getFieldId() {
return fieldId;
}
@ -24,4 +29,19 @@ public class DmpBlueprintValueModel {
this.value = value;
}
public Instant getDateValue() {
return dateValue;
}
public void setDateValue(Instant dateValue) {
this.dateValue = dateValue;
}
public Double getNumberValue() {
return numberValue;
}
public void setNumberValue(Double numberValue) {
this.numberValue = numberValue;
}
}