懒羊羊
2024-01-31 e57a8990ae56f657a59c435a0613c5f7a8728003
提交 | 用户 | 时间
e57a89 1 package com.jcdm.common.enums;
2
3 /**
4  * 限流类型
5  *
6  * @author jc
7  */
8
9 public enum LimitType
10 {
11     /**
12      * 默认策略全局限流
13      */
14     DEFAULT,
15
16     /**
17      * 根据请求者IP进行限流
18      */
19     IP
20 }