fuliqi
2024-07-31 f284c5ef6a1aa6e9ba5d4e94e4b2abe83b6ea18c
ycl-server/src/main/java/com/ycl/feign/UYClient.java
@@ -1,10 +1,9 @@
package com.ycl.feign;
import com.alibaba.fastjson2.JSONObject;
import com.ycl.platform.domain.param.UY.CameraParam;
import com.ycl.platform.domain.param.UY.OnlineParam;
import com.ycl.platform.domain.param.UY.RecordMetaDSumParam;
import com.ycl.platform.domain.param.UY.*;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.cloud.openfeign.SpringQueryMap;
import org.springframework.stereotype.Component;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
@@ -27,7 +26,7 @@
     * @return 查询摄像机清单集合
     */
    @GetMapping("/VIID/Cameras")
    JSONObject cameraList(@RequestParam CameraParam cameraParam);
    JSONObject cameraList(@SpringQueryMap CameraParam cameraParam);
    /**
     * 点位在线
@@ -36,7 +35,7 @@
     * @return 查询在线统计列表
     */
    @GetMapping("/openapi/v1/report/online/list")
    JSONObject onlineList(@RequestParam OnlineParam onlineParam);
    JSONObject onlineList(@SpringQueryMap OnlineParam onlineParam);
    /**
     * 录像可用
@@ -50,4 +49,21 @@
    @GetMapping("/api/v1/app/osdMonitor/list")
    JSONObject osdMonitorList();
    /**
     * 图像检测诊断结果
     *
     * @param param
     * @return
     */
    @GetMapping("/openapi/v1/vqdMonitor/queryVqdResult")
    JSONObject queryVqdResult(@SpringQueryMap QueryVqdParam param);
    /**
     * 视频图像质量
     *
     * @param param
     * @return
     */
    @GetMapping("/api/v1/app/report/vqd/detail/list")
    JSONObject queryVqdResult(@SpringQueryMap VideoQualityParam param);
}