Files
tiesheng-springboot/springboot-annotation/src/main/java/com/tiesheng/annotation/encrypt/EncryptedRespBody.java
2023-01-11 11:21:01 +08:00

13 lines
213 B
Java

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