com.silentgo.json.annotation.JSONIgnore Maven / Gradle / Ivy
package com.silentgo.json.annotation;
import java.lang.annotation.*;
/**
* Project : json
* Package : com.silentgo.json.annotation
*
* @author teddyzhu
*
* Created by teddyzhu on 2017/1/6.
*/
@Documented
@Inherited
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.FIELD})
public @interface JSONIgnore {
boolean serialize() default true;
boolean deserialize() default true;
}