Json 与 Entity 实体的转换
import com.alibaba.fastjson.JSONObject;
json 转成 List
String json = new Gson().toJson(map);
List<TeamIntroduceForm> teamIntroduceForms = JSONArray.parseArray(info.getTeamIntroduce(), TeamIntroduceForm.class);
json 转成Entity
AnswerTemplate answerTemplate = JSONObject.parseObject(record.getAnswer(), AnswerTemplate.class);
Entity 转 josn
JSONObject.toJSON(record).toString();
集合转json
JSONArray.toJSONString(record.getTeamIntroduceForms());
json转字符串
JSON.toJSONString(json)