18 lines
409 B
Java
18 lines
409 B
Java
package io.izzel.taboolib.module.serialize;
|
|
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
import java.lang.annotation.Target;
|
|
|
|
/**
|
|
* @Author sky
|
|
* @Since 2018-10-05 12:11
|
|
*
|
|
* 用于标注不需要进行序列化的内容
|
|
*/
|
|
@Target(ElementType.FIELD)
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
public @interface DoNotSerialize {
|
|
|
|
} |