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

com.kangaroohy.plugin.excel.head.HeadGenerator Maven / Gradle / Ivy

There is a newer version: 3.1.3
Show newest version
package com.kangaroohy.plugin.excel.head;

/**
 * Excel头生成器,用于自定义生成头部信息
 *
 * @author hy 2020/10/27
 * @version 1.0
 */
public interface HeadGenerator {

	/**
	 * 

* 自定义头部信息 *

* 实现类根据数据的class信息,定制Excel头
* 具体方法使用参考:https://www.yuque.com/easyexcel/doc/write#b4b9de00 * @param clazz 当前sheet的数据类型 * @return List> Head头信息 */ HeadMeta head(Class clazz); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy