zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
package com.changhong.epc.bean.count.func.annotation;
 
import com.changhong.epc.bean.count.func.FuncGroupEnum;
 
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
 
/**
 * 函数格式注解
 * @author wangZX
 *
 */
@Retention(RetentionPolicy.RUNTIME)
public @interface MyFunc {
 
    /**
     * 
     * @return
     */
    String format();
 
    /**
     * 
     * @return
     */
    String formatShow();
    
    /**
     * 
     * @return
     */
    FuncGroupEnum group() default FuncGroupEnum.JBHS;
 
    /**
     * 
     * @return
     */
    String info() default "";
 
    /**
     * 是否显示
     * @return
     */
    boolean isShow() default true;
}