HGLExcelResult.java 560 B

12345678910111213141516171819202122232425262728
  1. package cn.com.lzt.excel.entity;
  2. import java.util.ArrayList;
  3. import java.util.List;
  4. public class HGLExcelResult {
  5. public List<String> headerList = new ArrayList<String>();
  6. public List<List<String>> dataList = new ArrayList<List<String>>();;
  7. public List<String> getHeaderList() {
  8. return headerList;
  9. }
  10. public void setHeaderList(List<String> headerList) {
  11. this.headerList = headerList;
  12. }
  13. public List<List<String>> getDataList() {
  14. return dataList;
  15. }
  16. public void setDataList(List<List<String>> dataList) {
  17. this.dataList = dataList;
  18. }
  19. }