change the paramTypeModel
This commit is contained in:
parent
11a866cd3b
commit
0e758ecb51
|
@ -10,6 +10,35 @@ public class ParamTypeModel {
|
||||||
private String valueSeperator = ";";
|
private String valueSeperator = ";";
|
||||||
private String fieldSeperator = ",";
|
private String fieldSeperator = ",";
|
||||||
|
|
||||||
|
private int size;
|
||||||
|
private String rows;
|
||||||
|
|
||||||
|
@XmlElement
|
||||||
|
public int getSize() {
|
||||||
|
return size;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setSize(int size) {
|
||||||
|
this.size = size;
|
||||||
|
}
|
||||||
|
|
||||||
|
@XmlElement
|
||||||
|
public String getRows() {
|
||||||
|
return rows;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setRows(String rows) {
|
||||||
|
this.rows = rows;
|
||||||
|
}
|
||||||
|
private String cols;
|
||||||
|
@XmlElement
|
||||||
|
public String getCols() {
|
||||||
|
return cols;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setCols(String cols) {
|
||||||
|
this.cols = cols;
|
||||||
|
}
|
||||||
@XmlElement
|
@XmlElement
|
||||||
public String getType() {
|
public String getType() {
|
||||||
return type;
|
return type;
|
||||||
|
|
Loading…
Reference in New Issue