io.github.quickmsg.common.annotation.Router Maven / Gradle / Ivy
The newest version!
package io.github.quickmsg.common.annotation;
import io.github.quickmsg.common.enums.HttpType;
import java.lang.annotation.*;
/**
* @author luxurong
*/
@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Inherited
public @interface Router {
String value();
boolean resource() default false;
HttpType type() default HttpType.GET;
}