fastJSON 的jsonobject和bean互转
//bean转换成JSONObejct JSONObject json = JSONObject.parseObject(JSONObject.toJSON(bean).toString()); //jsonObject 转换成bean OrderNodeRecordsBean orderNodeRecordsBean = JSONObject.toJavaObject(json, Object.class); 来源: CSDN 作者: 架构师制造机 链接: https://blog.csdn.net/gbh666666/article/details/103473928