package com.lf.server.annotation;
|
|
import java.lang.annotation.*;
|
|
/**
|
* Excel头注解类
|
* @author WWW
|
*/
|
@Target(ElementType.TYPE)
|
@Retention(RetentionPolicy.RUNTIME)
|
public @interface ExcelHead {
|
/**
|
* Excel头行数
|
*
|
* @return 头行数
|
*/
|
int headRows() default 1;
|
|
/**
|
* 排除的Sheet名称(多个用逗号隔开)
|
*
|
* @return
|
*/
|
String excludeSheets() default "";
|
}
|