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;
|
}
|