net.wicp.tams.common.metrics.annotation.MeterTams Maven / Gradle / Ivy
/*
* **********************************************************************
* Copyright (c) 2022 .
* All rights reserved.
* 项目名称:common
* 项目描述:公共的工具集
* 版权说明:本软件属andy.zhou([email protected])所有。
* ***********************************************************************
*/
/**
*
* @Description: Meter注解
* @author zhoujunhui
*/
package net.wicp.tams.common.metrics.annotation;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ ElementType.FIELD })
public @interface MeterTams {
String value();
Class> classz() default Object.class;
boolean isThisClass() default true;// 是否启用注解所在的类,默认为false
}