package com.example.fuzzControll.annotion;

import java.lang.annotation.*;

/**
 * 方法前置处理
 */
@Inherited
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD})
public @interface NeedCutBefore {
    String name() default "";
    String function() default "";
}