package com.qianwen.core.excel.extend.annotation; import java.lang.annotation.Documented; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; import com.qianwen.core.excel.extend.listener.DefaultAnalysisEventListener; import com.qianwen.core.excel.extend.listener.ListAnalysisEventListener; @Target({ElementType.PARAMETER}) @Documented @Retention(RetentionPolicy.RUNTIME) public @interface RequestExcel { String fileName() default "file"; Class> readListener() default DefaultAnalysisEventListener.class; boolean ignoreEmptyRow() default false; }