package com.vci.starter.poi.annotation;
|
|
import java.lang.annotation.ElementType;
|
import java.lang.annotation.Retention;
|
import java.lang.annotation.RetentionPolicy;
|
import java.lang.annotation.Target;
|
|
/**
|
* 导出到excel的标题设置
|
* @author weidy
|
* @date 2020/5/30
|
*/
|
@Target({ ElementType.TYPE})
|
@Retention(RetentionPolicy.RUNTIME)
|
public @interface ExcelTitle {
|
/**
|
* 标题所在的行号
|
* @return
|
*/
|
int rowIndexForTitle() default 1;
|
}
|