|
@@ -168,15 +168,12 @@ public class AdmSystemController {
|
|
|
/**
|
|
|
* 系统绑定的动态信息点或静态信息点
|
|
|
* type: static(静态),iot (动态)
|
|
|
-
|
|
|
- * @param request
|
|
|
* @return
|
|
|
* @throws Exception
|
|
|
*/
|
|
|
@GetMapping("/export")
|
|
|
- public AdmResponse exportInfos(@RequestBody AdmQueryCriteria request) {
|
|
|
- request.setName(AdmSystem.OBJ_TYPE);
|
|
|
- return service.query(request);
|
|
|
+ public AdmResponse exportInfos(@RequestParam("type") String type,@RequestParam("projectId") String projectId) throws Exception {
|
|
|
+ return null;
|
|
|
}
|
|
|
|
|
|
/**
|