package com.community.pocket.util; import java.lang.annotation.Retention; import java.lang.annotation.Target; import static java.lang.annotation.ElementType.METHOD; import static java.lang.annotation.RetentionPolicy.RUNTIME; @Retention(RUNTIME) @Target({METHOD}) public @interface HttpRequest { //接口地址 String value(); }