package com.zy.common.model.annotations;
|
|
import java.lang.annotation.ElementType;
|
import java.lang.annotation.Retention;
|
import java.lang.annotation.RetentionPolicy;
|
import java.lang.annotation.Target;
|
|
//接口频率限制
|
@Target({ElementType.TYPE, ElementType.METHOD})
|
@Retention(RetentionPolicy.RUNTIME)
|
public @interface RateLimit {
|
|
int value();//接口频率
|
|
}
|