| 12345678910111213141516171819202122232425262728 |
- package cn.com.lzt.excel.entity;
- import java.util.ArrayList;
- import java.util.List;
- public class HGLExcelResult {
-
- public List<String> headerList = new ArrayList<String>();
-
- public List<List<String>> dataList = new ArrayList<List<String>>();;
- public List<String> getHeaderList() {
- return headerList;
- }
- public void setHeaderList(List<String> headerList) {
- this.headerList = headerList;
- }
- public List<List<String>> getDataList() {
- return dataList;
- }
- public void setDataList(List<List<String>> dataList) {
- this.dataList = dataList;
- }
- }
|