com.houkunlin.system.common.aop.DownloadExcelConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of system-common-aop-starter Show documentation
Show all versions of system-common-aop-starter Show documentation
常用的 AOP 注解功能。
Commonly used AOP annotation features.
The newest version!
package com.houkunlin.system.common.aop;
import com.alibaba.excel.converters.Converter;
import com.alibaba.excel.metadata.AbstractParameterBuilder;
import java.lang.annotation.*;
/**
* 自定义类型转换覆盖默认值。
*
* @author HouKunLin
* @see AbstractParameterBuilder#registerConverter(Converter)
*/
@Inherited
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface DownloadExcelConverter {
/**
* 自定义类型转换覆盖默认值。
*
* @see AbstractParameterBuilder#registerConverter(Converter)
*/
Class extends Converter>[] value() default {};
}