make export description template multiplicity with null value

This commit is contained in:
amentis 2024-07-03 11:08:10 +03:00
parent 4ea3a94f6d
commit 4c7fac53b1
1 changed files with 8 additions and 8 deletions

View File

@ -9,27 +9,27 @@ import jakarta.xml.bind.annotation.XmlElement;
@XmlAccessorType(XmlAccessType.FIELD)
public class DescriptionTemplateMultiplicityImportExport {
@XmlAttribute(name="min")
private int min;
private Integer min;
@XmlAttribute(name="max")
private int max;
private Integer max;
@XmlElement(name="placeholder")
private String placeholder;
@XmlElement(name="tableView")
private boolean tableView;
public int getMin() {
return this.min;
public Integer getMin() {
return min;
}
public void setMin(int min) {
public void setMin(Integer min) {
this.min = min;
}
public int getMax() {
return this.max;
public Integer getMax() {
return max;
}
public void setMax(int max) {
public void setMax(Integer max) {
this.max = max;
}