|
@@ -9,6 +9,7 @@ import org.springframework.web.bind.annotation.RequestBody;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
+import java.util.HashMap;
|
|
|
import java.util.Map;
|
|
|
|
|
|
/**
|
|
@@ -28,7 +29,9 @@ public class ZhcxBiDatasourceController {
|
|
|
|
|
|
@RequestMapping("datasource")
|
|
|
@ApiOperation("项目指标数据源")
|
|
|
- public R datasource(@RequestBody Map<String, Object> map) {
|
|
|
+ public R datasource() {
|
|
|
+ // 后路
|
|
|
+ HashMap<String, Object> map = new HashMap<>();
|
|
|
return zhcxBiDatasourceService.getDatasource(map);
|
|
|
}
|
|
|
}
|