无关风月
5 天以前 6e23a1d4d7c2e56f229b5391efdc38210f70fc8d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.jilongda.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 "---此类型数据非文本信息,不可记录---";
}