public String removeHistoryId(String jsonData) {
JSONArray arrys = JSON.parseArray(jsonData);
for (Object o : arrys) {
JSONObject json = (JSONObject) o;
json.remove("historyId");
}
return arrys.toString();
}