make export description template multiplicity with null value
This commit is contained in:
parent
4ea3a94f6d
commit
4c7fac53b1
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue