package cc.mrbird.febs.common.annotation;
|
|
import java.lang.annotation.ElementType;
|
import java.lang.annotation.Retention;
|
import java.lang.annotation.RetentionPolicy;
|
import java.lang.annotation.Target;
|
|
/**
|
* @author wzy
|
* @date 2022-06-14
|
**/
|
@Target(ElementType.TYPE)
|
@Retention(RetentionPolicy.RUNTIME)
|
public @interface EncryptEnable {
|
}
|