All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.afterturn.easypoi.excel.entity.ExportExcelItem Maven / Gradle / Ivy

/**
 * 
 */
package cn.afterturn.easypoi.excel.entity;

import java.util.List;
import java.util.Map;

import cn.afterturn.easypoi.excel.entity.params.ExcelExportEntity;

/**
 * @author xfworld
 * @since 2016-5-26
 * @version 1.0
 */
public class ExportExcelItem {
	private List entityList;
	private List> resultList;

	public List getEntityList() {
		return this.entityList;
	}

	public void setEntityList(List entityList) {
		this.entityList = entityList;
	}

	public List> getResultList() {
		return this.resultList;
	}

	public void setResultList(List> resultList) {
		this.resultList = resultList;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy