fuliqi
2024-08-02 40797b99f5ec22b7165d4c67eee5c198741d0633
ycl-server/src/main/java/com/ycl/feign/UYClient.java
@@ -8,7 +8,6 @@
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestParam;
/**
 * @author gonghl
@@ -16,17 +15,17 @@
 */
@Component
@FeignClient(name = "UYClient", url = "${request.youYunDomain}", configuration = YYFeignConfig.class)
@FeignClient(name = "UYClient", url = "${request.youYunDomain}", configuration = UYFeignConfig.class)
public interface UYClient {
    /**
     * 一机一档
     *
     * @param cameraParam 请求参数
     * @param oneMachineFileParam 请求参数
     * @return 查询摄像机清单集合
     */
    @GetMapping("/VIID/Cameras")
    JSONObject cameraList(@SpringQueryMap CameraParam cameraParam);
    JSONObject oneMachineFile(@SpringQueryMap OneMachineFileParam oneMachineFileParam);
    /**
     * 点位在线
@@ -65,5 +64,5 @@
     * @return
     */
    @GetMapping("/api/v1/app/report/vqd/detail/list")
    JSONObject queryVqdResult(@SpringQueryMap VideoQualityParam param);
    JSONObject videoQuality(@SpringQueryMap VideoQualityParam param);
}