admin
2022-03-25 17055fd8d36504b79a5def28f5d4b4740faf012d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package org.yeshi.utils.annotation;
 
/**
 * @author Administrator
 * @title: RequestMonitor
 * @projectName utils
 * @description: 请求监控
 * @date 2021/10/1418:45
 */
public @interface RequestMonitor {
    //redis的主键
    String key() default "";
 
    //最大间隔时间 单位为s
    int maxSpaceTime();
}