dangsn
2024-06-06 33321f5486fd586fda6fd3f46b7e71754fede28b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.vci.starter.poi.annotation;
 
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
 
/**
 * 使用其他的对象来获取excel的内容
 * @author weidy
 * @date 2020/6/18
 */
@Target({ java.lang.annotation.ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
public @interface ExcelRefer {
    /**
     * 包含的关联类,只能是一个,否则无法区分内容
     * @return 类
     */
    Class<?> value();
}