|
|
package com.inspect.tcpserver.sip.feign;
|
|
|
|
|
|
import com.inspect.tcpserver.domain.AjaxResult;
|
|
|
import org.springframework.cloud.openfeign.FeignClient;
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestParam;
|
|
|
|
|
|
@FeignClient(name = "inspect-main",url = "http://199.199.199.104:9901")
|
|
|
public interface InspectMainFeignService {
|
|
|
|
|
|
@GetMapping({"/video/realtime"})
|
|
|
AjaxResult realtime(
|
|
|
@RequestParam("patroldeviceCode") String patrolDeviceCode,
|
|
|
@RequestParam("channelCode") String channelCode);
|
|
|
}
|