| 1234567891011121314151617181920212223 |
- package com.bizmatics.service.aop;
- import java.lang.annotation.ElementType;
- import java.lang.annotation.Retention;
- import java.lang.annotation.RetentionPolicy;
- import java.lang.annotation.Target;
- /**
- * @author chen
- * @date
- */
- @Retention(RetentionPolicy.RUNTIME)
- @Target(ElementType.METHOD)
- public @interface MethodExecutionExpendTime {
- /**
- * 记录方法描述
- *
- * @return 方法描述
- */
- String methodDescription() default "";
- }
|