com.orion.office.excel.annotation.ExportFooter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of orion-office Show documentation
Show all versions of orion-office Show documentation
orion office (excel csv and more...)
package com.orion.office.excel.annotation;
import com.orion.lang.utils.Strings;
import java.lang.annotation.*;
/**
* excel 页脚注解
*
* @author Jiahang Li
* @version 1.0.0
* @since 2020/12/25 18:39
*/
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface ExportFooter {
/**
* 页脚左侧
*/
String left() default Strings.EMPTY;
/**
* 页脚中间
*/
String center() default Strings.EMPTY;
/**
* 页脚右侧
*/
String right() default Strings.EMPTY;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy