CheckScene.java 293 B

1234567891011121314
  1. package com.fdkankan.web.aop;
  2. import java.lang.annotation.*;
  3. /**
  4. * 检查场景是否允许更改
  5. * @author Admin
  6. */
  7. @Target({ElementType.PARAMETER, ElementType.METHOD})
  8. @Retention(RetentionPolicy.RUNTIME)
  9. @Documented
  10. public @interface CheckScene {
  11. String description() default "";
  12. }