|
@@ -346,12 +346,13 @@ public class EconomicService {
|
|
|
|
|
|
|
|
|
|
|
|
- public Map<String, List<List<Glqx>>> curveFittingList(String wpids, String type, String starttime, String endtime, String dateType) throws Exception {
|
|
|
+ public List<List<Glqx>> curveFittingList(String wpids, String type, String starttime, String endtime, String dateType) throws Exception {
|
|
|
Map<String, List<List<Glqx>>> resultMap = new HashMap<>();
|
|
|
|
|
|
|
|
|
List<ProBasicOrganizeTree> wtls = CacheContext.wtls;
|
|
|
List<EconomicVo> wt = new ArrayList<>();
|
|
|
+
|
|
|
List<List<Glqx>> tempList = new ArrayList<>();
|
|
|
|
|
|
List<Glqx> vo = new ArrayList<Glqx>();
|
|
@@ -413,11 +414,11 @@ public class EconomicService {
|
|
|
}
|
|
|
vo.add(vos);
|
|
|
tempList.add(vo);
|
|
|
- resultMap.put("list", tempList);
|
|
|
+
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
- return resultMap;
|
|
|
+ return tempList;
|
|
|
}
|
|
|
}
|