All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.orion.office.excel.annotation.ExportFooter Maven / Gradle / Ivy

There is a newer version: 1.0.9
Show newest version
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