package com.zzwtec.wechat.sdk.aop.annotation; import com.zzwtec.wechat.sdk.aop.inject.InjectHandler; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * 用于争强AOP * @author 毛文超 * */ @Target({ElementType.TYPE,ElementType.METHOD,ElementType.FIELD}) @Retention(RetentionPolicy.RUNTIME) public @interface ZZWAround { Class value(); }