com.kangaroohy.plugin.excel.annotation.ExcelRequired Maven / Gradle / Ivy
package com.kangaroohy.plugin.excel.annotation;
import org.apache.poi.ss.usermodel.IndexedColors;
import java.lang.annotation.*;
/**
* 类 ExcelRequired 功能描述:
*
* @author hy
* @version 0.0.1
* @date 2023/7/23 22:55
*/
@Documented
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
public @interface ExcelRequired {
/**
* 字体颜色
*/
IndexedColors frontColor() default IndexedColors.RED;
}