package com.shlanbao.tzsc.utils.extents;
|
|
import java.lang.annotation.ElementType;
|
import java.lang.annotation.Retention;
|
import java.lang.annotation.RetentionPolicy;
|
import java.lang.annotation.Target;
|
|
/**
|
* @auther bsw
|
* @description 用于备注方法名称
|
* @datetime 2019-12-30 19:41
|
*/
|
@Target(ElementType.METHOD) // 方法注解
|
@Retention(RetentionPolicy.RUNTIME) // 运行时可见
|
public @interface MethodName {
|
String name(); // 方法名称
|
}
|