mirror of
https://github.com/PlayEdu/PlayEdu
synced 2025-07-27 12:54:31 +08:00
20 lines
390 B
Java
20 lines
390 B
Java
/**
|
|
* This file is part of the PlayEdu.
|
|
* (c) 杭州白书科技有限公司
|
|
*/
|
|
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 "";
|
|
}
|