|
@@ -95,8 +95,8 @@ public class BenchmarkingController {
|
|
|
|
|
|
Map<String,List<ValueVo>> map=new HashMap();
|
|
|
|
|
|
- map.put(gaid1,ls1);
|
|
|
- map.put(gaid2,ls2);
|
|
|
+ map.put("gaid1",ls1);
|
|
|
+ map.put("gaid2",ls2);
|
|
|
|
|
|
return AjaxResult.successData(AjaxStatus.success.code,map);
|
|
|
}
|
|
@@ -117,8 +117,8 @@ public class BenchmarkingController {
|
|
|
Windturbineinfodaytop3 wtd1=windturbineinfodaytop3Service.selectByPrimaryKey(gaid1);
|
|
|
Windturbineinfodaytop3 wtd2=windturbineinfodaytop3Service.selectByPrimaryKey(gaid2);
|
|
|
|
|
|
- map.put(gaid1,wtd1);
|
|
|
- map.put(gaid2,wtd2);
|
|
|
+ map.put("gaid1",wtd1);
|
|
|
+ map.put("gaid2",wtd2);
|
|
|
|
|
|
return AjaxResult.successData(AjaxStatus.success.code,map);
|
|
|
}
|