package org.dromara.common.excel.annotation; import org.apache.poi.ss.usermodel.IndexedColors; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * 是否必填 此注解仅用于单表头 不支持多层级表头 * @author guzhouyanyu */ @Target({ElementType.FIELD}) @Retention(RetentionPolicy.RUNTIME) public @interface ExcelRequired { /** * 字体颜色 */ IndexedColors fontColor() default IndexedColors.RED; }