top.yumbo.excel.annotation.ExcelCellStyles Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of excel-import-export Show documentation
Show all versions of excel-import-export Show documentation
excel import and export utils.
package top.yumbo.excel.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* @author jinhua
* @date 2021/6/7 13:03
*/
@Target({ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
public @interface ExcelCellStyles {
ExcelCellStyle[] value();
}