com.github.yt.excel.annotations.ExportExcel Maven / Gradle / Ivy
The newest version!
package com.github.yt.excel.annotations;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* ExcelSign接口
*/
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.FIELD, ElementType.METHOD})
public @interface ExportExcel {
String title(); //Excel标题
int order() default 0; //排序
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy