All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.kangaroohy.plugin.excel.annotation.ExcelNotation Maven / Gradle / Ivy

There is a newer version: 3.1.3
Show newest version
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; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy