package org.springblade.code.vo.universalInter.attrmap;
|
|
import java.util.ArrayList;
|
import java.util.List;
|
|
public class DataObjectVO {
|
private List<String> colName = new ArrayList();
|
private List<RowDatas> rowData = new ArrayList();
|
|
public List<String> getColName() {
|
return colName;
|
}
|
|
public void setColName(List<String> colName) {
|
this.colName = colName;
|
}
|
public List<RowDatas> getRowData() {
|
return rowData;
|
}
|
|
public void setRowData(List<RowDatas> rowData) {
|
this.rowData = rowData;
|
}
|
}
|