13 lines
213 B
Java
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 {
|
|
}
|