cn.gjing.tools.excel.driven.EnableExcelDrivenMode Maven / Gradle / Ivy
package cn.gjing.tools.excel.driven;
import org.springframework.context.annotation.Import;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Enable excel annotation-driven mode
*
* @author Gjing
**/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
@Import({ExcelDrivenConfiguration.class})
public @interface EnableExcelDrivenMode {
}