admin
2022-04-07 211840b64fa1132d76d6dff6c779e9ba2c0c450f
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();
}