fastjson @JSONField 使用
应用:标注在类的属性字段上,对字段属性序列化
******************
相关注解
@JSONField
@Retention(RetentionPolicy.RUNTIME)
@Target({ ElementType.METHOD, ElementType.FIELD, ElementType.PARAMETER })
public @interface JSONField {
int ordinal() default 0; //序列化字段在类中的输出顺序
String name() default ""; //字段输出名称
String format() default ""; //字段输出格式,常用于日期格式化
boolean serialize() default true; //是否序列化
boolean deserialize() default true; //是否反序列化
Class<?> serializeUsing() default Void.class; //自定义序