package com.zzwtec.wechat.rpc.annotation; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * 用于标记接口中的方法 * @author 毛文超 * */ @Target({ElementType.METHOD}) @Retention(RetentionPolicy.RUNTIME) public @interface ZZWApiAction { String value(); }