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