change the paramTypeModel

This commit is contained in:
fanfuxiaoran 2014-03-19 10:49:35 +08:00
parent 11a866cd3b
commit 0e758ecb51
1 changed files with 29 additions and 0 deletions

View File

@ -10,6 +10,35 @@ public class ParamTypeModel {
private String valueSeperator = ";";
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
public String getType() {
return type;