package com.hollywood.common.log;
|
|
import java.lang.annotation.ElementType;
|
import java.lang.annotation.Retention;
|
import java.lang.annotation.RetentionPolicy;
|
import java.lang.annotation.Target;
|
|
/**
|
* 参数解析
|
*
|
* @author
|
* @create 2018-09-26 9:21
|
*/
|
@Target(ElementType.PARAMETER)
|
@Retention(RetentionPolicy.RUNTIME)
|
public @interface ParamParser {
|
String value() default "---此类型数据非文本信息,不可记录---";
|
}
|