Enaium
Enaium

# Feature Request - Describe the feature - Tell us why should add this feature Let more users use it
### 使用版本: 1.34.0 ### 涉及的功能模块: SaInterceptor ### 测试步骤: ```java @Component public class SaTokenInterceptor extends SaInterceptor { public SaTokenInterceptor() { super(auth -> SaRouter.match("/**") .notMatchMethod("OPTIONS") .check(check -> StpUtil.checkLogin())); } } ``` ```...