com.orion.office.excel.annotation.ExportHeader 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 ExportHeader {
/**
* 页眉左侧
*/
String left() default Strings.EMPTY;
/**
* 页眉中间
*/
String center() default Strings.EMPTY;
/**
* 页眉右侧
*/
String right() default Strings.EMPTY;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy