Browse Source

fix 暂未实现的接口 调整

lvxianyun 3 years ago
parent
commit
7656716fbc

+ 2 - 5
src/main/java/com/persagy/proxy/object/controller/AdmSystemController.java

@@ -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;
     }
 
     /**