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

com.duowan.leopard.officeutil.excel.bean.ExportExcelBean Maven / Gradle / Ivy

The newest version!
package com.duowan.leopard.officeutil.excel.bean;

import java.util.LinkedHashMap;
import java.util.List;

/**
 * @author lizeyang
 * @date 2015年5月29日
 */
public class ExportExcelBean {
	/**
	 * 要填充的内容
	 */
	private List contentList;

	/**
	 * 表列标题名称
	 */
	private LinkedHashMap keyMap;
	/**
	 * 分表名
	 */
	private String sheetName;

	public List getContentList() {
		return contentList;
	}

	public void setContentList(List contentList) {
		this.contentList = contentList;
	}

	public LinkedHashMap getKeyMap() {
		return keyMap;
	}

	public void setKeyMap(LinkedHashMap keyMap) {
		this.keyMap = keyMap;
	}

	public String getSheetName() {
		return sheetName;
	}

	public void setSheetName(String sheetName) {
		this.sheetName = sheetName;
	}

}