Initial commit

This commit is contained in:
曾文豪
2022-12-22 17:25:10 +08:00
commit 7cec4f3f35
61 changed files with 3696 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
package com.tiesheng.annotation.encrypt;
import java.lang.annotation.*;
/**
* @author hao
*/
@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface EncryptedRespBody {
}

View File

@@ -0,0 +1,12 @@
package com.tiesheng.annotation.token;
import java.lang.annotation.*;
/**
* @author hao
*/
@Target(ElementType.METHOD)
@Documented
@Retention(RetentionPolicy.RUNTIME)
public @interface TokenIgnore {
}