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

com.orion.office.excel.annotation.ExportComment 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 16:02
 */
@Target({ElementType.METHOD, ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface ExportComment {

    /**
     * 批注
     */
    String comment();

    /**
     * 作者
     */
    String author() default Strings.EMPTY;

    /**
     * 是否可见
     */
    boolean visible() default false;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy