You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

15 lines
580 B

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);
}