田源
2024-03-19 33d8416c5a16fee7464df9774678bc60e47ff956
1
2
3
4
5
6
7
8
9
10
11
12
package com.vci.ubcs.starter.poi.annotation;
 
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 ExcelTitle {
    int rowIndexForTitle() default 1;
}