|
@@ -8,6 +8,6 @@ import org.springframework.web.bind.annotation.RequestParam;
|
|
|
@FeignClient(contextId = "RemotecdiTaskService", value = "service-cdi", fallbackFactory = RemotecdiTaskFactory.class)
|
|
@FeignClient(contextId = "RemotecdiTaskService", value = "service-cdi", fallbackFactory = RemotecdiTaskFactory.class)
|
|
|
public interface RemotecdiTaskService {
|
|
public interface RemotecdiTaskService {
|
|
|
@GetMapping("/synchronizeDeviceData")
|
|
@GetMapping("/synchronizeDeviceData")
|
|
|
- void synchronizeDeviceData(@RequestParam Integer tenantId,
|
|
|
|
|
- @RequestParam Long engineeringId);
|
|
|
|
|
|
|
+ void synchronizeDeviceData(@RequestParam("tenantId") Integer tenantId,
|
|
|
|
|
+ @RequestParam("engineeringId") Long engineeringId);
|
|
|
}
|
|
}
|