浏览代码

等级评估接口调整

shilin 4 年之前
父节点
当前提交
2e58dae23f
共有 1 个文件被更改,包括 4 次插入4 次删除
  1. 4 4
      src/main/java/com/gyee/frame/controller/benchmarking/BenchmarkingController.java

+ 4 - 4
src/main/java/com/gyee/frame/controller/benchmarking/BenchmarkingController.java

@@ -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);
         }