com.pig4cloud.plugin.excel.head.HeadMeta Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of excel-spring-boot-starter Show documentation
Show all versions of excel-spring-boot-starter Show documentation
easy and high performance excel
package com.pig4cloud.plugin.excel.head;
import lombok.Data;
import java.util.List;
import java.util.Set;
/**
* @author Yakir
* @date 2021/4/26 10:58
*/
@Data
public class HeadMeta {
/**
*
* 自定义头部信息
*
* 实现类根据数据的class信息,定制Excel头
* 具体方法使用参考:https://www.yuque.com/easyexcel/doc/write#b4b9de00
*/
private List> head;
/**
* 忽略头对应字段名称
*/
private Set ignoreHeadFields;
}