Helius
2020-12-15 2914588a65371a3ce43f678cde0a26cd8da26611
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.matrix.system.hive.plugin.util;
 
 
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
 
/**
 *导出excel的时候标示是否生成,该注解只能用在成员变量上
* @ClassName: ExcelAnnotation 
* @author jyy
* @date 2016年8月3日 下午2:39:02 
*
 */
@Retention(RetentionPolicy.RUNTIME)  
@Target(ElementType.FIELD) 
public @interface ExcelAnnotation {
 
    boolean checked()  default  false;
    
}