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

com.github.rxyor.common.util.xlsx.Column Maven / Gradle / Ivy

There is a newer version: 1.0.14.17
Show newest version
package com.github.rxyor.common.util.xlsx;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 *

* *

* * @author liuyang * @date 2019/1/7 Mon 16:04:00 * @since 1.0.0 */ @Target(ElementType.FIELD) @Retention(RetentionPolicy.RUNTIME) public @interface Column { /** * 列标题 */ String title() default ""; /** * 列下标 */ int index() default Integer.MAX_VALUE; }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy