com.kangaroohy.plugin.excel.annotation.ExcelNotation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of excel-spring-boot-starter Show documentation
Show all versions of excel-spring-boot-starter Show documentation
easy and high performance excel
package com.kangaroohy.plugin.excel.annotation;
import java.lang.annotation.*;
/**
* 类 ExcelNotation 功能描述:
*
* @author hy
* @version 0.0.1
* @date 2023/7/23 22:53
*/
@Documented
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
public @interface ExcelNotation {
/**
* 文本内容
*/
String value() default "";
/**
* 行号,多级表头时需要设置,否则批注不生效
*
* @return
*/
int rowIndex() default -1;
/**
* 列号,多级表头时需要设置,否则批注不生效
*
* @return
*/
int columnIndex() default -1;
}