
com.ecfront.easybi.excelconverter.exchange.annotation.Sheet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ez-excelconverter Show documentation
Show all versions of ez-excelconverter Show documentation
Simple Java and Excel conversion tools.
package com.ecfront.easybi.excelconverter.exchange.annotation;
import java.lang.annotation.*;
/**
* 声明此bean是可用于转换的
*/
@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Sheet {
/**
* 指定sheet名称
*/
String value() default "sheet1";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy