com.kangaroohy.plugin.excel.vo.ExcelExportEnhancer 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.kangaroohy.plugin.excel.vo;
import com.kangaroohy.plugin.excel.annotation.ExcelNotation;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.util.List;
import java.util.Map;
/**
* 类 ExcelExportEnhancer 功能描述:
*
* @author hy
* @version 0.0.1
* @date 2023/8/22 22:57
*/
@Data
@Builder
@AllArgsConstructor
@NoArgsConstructor
public class ExcelExportEnhancer {
/**
* 批注
*/
private Map notationMap;
/**
* 多级表头批注
*/
private List notationList;
/**
* 必填列
*/
private Map requiredMap;
/**
* 下拉选项
*/
private Map selectedMap;
}