/**
|
* Copyright (c) 2013-Now http://jeesite.com All rights reserved.
|
*/
|
package com.ruoyi.common.core.excel.annotation;
|
|
import java.lang.annotation.ElementType;
|
import java.lang.annotation.Retention;
|
import java.lang.annotation.RetentionPolicy;
|
import java.lang.annotation.Target;
|
|
/**
|
* Excel注解定义数组
|
*/
|
@Target({ElementType.METHOD, ElementType.FIELD, ElementType.TYPE})
|
@Retention(RetentionPolicy.RUNTIME)
|
public @interface ExcelFields {
|
|
ExcelField[] value();
|
|
}
|