SlNodeVo.java
688 字节
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package com.aukey.example.vo;
import java.util.List;
/**
* @author: wgf
* @create: 2020-05-22 15:42
* @description:
**/
public class SlNodeVo {
/**
* 字段名称
*/
private List<String> headData;
/**
* 数据列表
*/
private List<List<Object>> columnDataList;
public List<List<Object>> getColumnDataList() {
return columnDataList;
}
public void setColumnDataList(List<List<Object>> columnDataList) {
this.columnDataList = columnDataList;
}
public List<String> getHeadData() {
return headData;
}
public void setHeadData(List<String> headData) {
this.headData = headData;
}
}