fastjson转换包含date类型属性的对象时报错com.alibaba.fastjson.JSONException: For input string 解决方法@TOC
fastjson转换包含date类型属性的对象时报错com.alibaba.fastjson.JSONException: For input string 解决方法
@JSONField(format="yyyy-MM")
private Date periodMonth;
加上注解标识即可
fastjson转换包含date类型属性的对象时报错com.alibaba.fastjson.JSONException: For input string 解决方法@TOC
fastjson转换包含date类型属性的对象时报错com.alibaba.fastjson.JSONException: For input string 解决方法
@JSONField(format="yyyy-MM")
private Date periodMonth;
加上注解标识即可