MD5EncryptBody.java 291 B

1234567891011121314
  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 MD5EncryptBody {
  12. }