|
@@ -76,11 +76,13 @@ public class IndexDataFacade {
|
|
|
for (String key : dataMap.keySet()) {
|
|
|
IndexDTO itemIndexDTO = new IndexDTO();
|
|
|
itemIndexDTO.setItemName(key);
|
|
|
+
|
|
|
List<String> indexUnits = new ArrayList<String>();
|
|
|
List<String> indexValues = new ArrayList<String>();
|
|
|
List<Integer> isAbnormals = new ArrayList<Integer>();
|
|
|
List<Date> creatTimes = new ArrayList<Date>();
|
|
|
List<IndexDataDTO> indexDatas = dataMap.get(key);
|
|
|
+ itemIndexDTO.setUniqueId(indexDatas.get(0).getUniqueId());
|
|
|
for (IndexDataDTO indexDataDTO : indexDatas) {
|
|
|
indexUnits.add(indexDataDTO.getIndexUnit());
|
|
|
indexValues.add(indexDataDTO.getIndexValue());
|