com.lkx.util.Excel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of excelutil Show documentation
Show all versions of excelutil Show documentation
ExcelUtil超级简单的Excel读取、写入、导出工具!
package com.lkx.util;
import java.lang.annotation.*;
/**
* ClassName: Excel
* Function: Excel字段注解
* Date: 2019/7/12 23:36
* author likaixuan
* version V1.0
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
@Documented
public @interface Excel {
/**
* Excel中表头字段
*/
String title();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy