|
@@ -61,7 +61,9 @@ public class PowersiPhysicalCheckService {
|
|
JSONArray rows = rawdata.getJSONArray("rows");
|
|
JSONArray rows = rawdata.getJSONArray("rows");
|
|
for (int i = 0; i < rows.size(); i++) {
|
|
for (int i = 0; i < rows.size(); i++) {
|
|
JSONObject item = rows.getJSONObject(i);
|
|
JSONObject item = rows.getJSONObject(i);
|
|
- item.put("checkTime", DateUtil.parseTimestamp(item.getLong("登记日期")));
|
|
|
|
|
|
+ String checkTime = item.getString("登记日期");
|
|
|
|
+ checkTime = checkTime.substring(0, 4) + "-" + checkTime.substring(4, 6) + "-" + checkTime.substring(6);
|
|
|
|
+ item.put("checkTime", checkTime);
|
|
}
|
|
}
|
|
return ResultVoUtil.success(rawdata);
|
|
return ResultVoUtil.success(rawdata);
|
|
}
|
|
}
|