AESEncryptBody.java 327 B

1234567891011121314151617
  1. package cn.licoy.encryptbody.annotation.encrypt;
  2. import java.lang.annotation.*;
  3. /**
  4. * @author licoy.cn
  5. * @version 2018/9/4
  6. * @see EncryptBody
  7. */
  8. @Target(value = {ElementType.METHOD,ElementType.TYPE})
  9. @Retention(RetentionPolicy.RUNTIME)
  10. @Documented
  11. public @interface AESEncryptBody {
  12. String otherKey() default "";
  13. }