- package com.fdkankan.web.aop;
- import java.lang.annotation.*;
- /**
- * 检查场景是否允许更改
- * @author Admin
- */
- @Target({ElementType.PARAMETER, ElementType.METHOD})
- @Retention(RetentionPolicy.RUNTIME)
- @Documented
- public @interface CheckScene {
- String description() default "";
- }
|