package org.dromara.common.excel.annotation; 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 ExcelNotation { /** * 批注内容 */ String value() default ""; }