mirror of
https://github.com/PlayEdu/PlayEdu
synced 2025-06-22 11:52:43 +08:00
15 lines
304 B
Java
15 lines
304 B
Java
package xyz.playedu.api.middleware;
|
|
|
|
import java.lang.annotation.*;
|
|
|
|
/**
|
|
* @Author 杭州白书科技有限公司
|
|
* @create 2023/2/21 16:40
|
|
*/
|
|
@Documented
|
|
@Target({ElementType.METHOD})
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
public @interface BackendPermissionMiddleware {
|
|
String slug() default "";
|
|
}
|