| 1234567891011121314151617 |
- package cn.licoy.encryptbody.annotation.encrypt;
- import java.lang.annotation.*;
- /**
- * @author licoy.cn
- * @version 2018/9/4
- * @see EncryptBody
- */
- @Target(value = {ElementType.METHOD,ElementType.TYPE})
- @Retention(RetentionPolicy.RUNTIME)
- @Documented
- public @interface AESEncryptBody {
- String otherKey() default "";
- }
|