config(ops): enable feign client for IotDeviceStatusQueryApi

This commit is contained in:
lzh
2026-01-29 11:50:49 +08:00
parent 5142b38d12
commit 1e5842756e

View File

@@ -1,14 +1,16 @@
package com.viewsh.module.ops.framework.rpc.config;
import com.viewsh.module.iot.api.device.IotDeviceControlApi;
import com.viewsh.module.iot.api.device.IotDeviceStatusQueryApi;
import com.viewsh.module.system.api.notify.NotifyMessageSendApi;
import org.springframework.cloud.openfeign.EnableFeignClients;
import org.springframework.context.annotation.Configuration;
@Configuration(value = "opsRpcConfiguration", proxyBeanMethods = false)
@EnableFeignClients(clients = {
NotifyMessageSendApi.class,
IotDeviceControlApi.class
NotifyMessageSendApi.class,
IotDeviceControlApi.class,
IotDeviceStatusQueryApi.class
})
public class RpcConfiguration {
}