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

com.iceolive.util.annotation.Excel Maven / Gradle / Ivy

The newest version!
package com.iceolive.util.annotation;

import java.lang.annotation.*;

/**
 * @author wangmianzhe
 */
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface Excel {
    //导出名称
    String name();

    //行高,字符数 像素点 约等于 字符数*256
    int height() default -1;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy