package com.common.annotation;
|
|
import java.lang.annotation.ElementType;
|
import java.lang.annotation.Retention;
|
import java.lang.annotation.RetentionPolicy;
|
import java.lang.annotation.Target;
|
|
/**
|
* @description: 脱敏接口注解
|
* @author: holden
|
* @time: 2022-01-20 09:50
|
*/
|
@Target({ElementType.METHOD,ElementType.TYPE})
|
@Retention(RetentionPolicy.RUNTIME)
|
public @interface DesensitiveApi {
|
|
}
|