com.github.houbb.sensitive.annotation.strategy.SensitiveStrategyMaskAll Maven / Gradle / Ivy
The newest version!
package com.github.houbb.sensitive.annotation.strategy;
import com.github.houbb.sensitive.annotation.metadata.SensitiveStrategy;
import com.github.houbb.sensitive.api.impl.SensitiveStrategyBuiltIn;
import java.lang.annotation.*;
/**
* 手机号脱敏注解
* @author binbin.hou
* date 2019/1/9
* @since 0.0.2
*/
@Inherited
@Documented
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
@SensitiveStrategy(SensitiveStrategyBuiltIn.class)
public @interface SensitiveStrategyMaskAll {
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy