1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.vci.ubcs.code.vo.webserviceModel.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;
    }
}