package com.qianwen.smartman.modules.perf.forestClient;
|
|
import com.dtflys.forest.annotation.Address;
|
import com.dtflys.forest.annotation.Get;
|
import com.dtflys.forest.annotation.Var;
|
import com.qianwen.smartman.common.config.ForestConfig;
|
|
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/perf/forestClient/PerfForestClient.class */
|
public interface PerfForestClient {
|
@Get("/Dmp-Rocketmq/RocketMqComponentApi/PushParamRealtimeDataForMachine?machineId={machineId}¶mKey={paramKey}")
|
@Address(source = ForestConfig.class)
|
String perfEmployeeOnOff(@Var("machineId") String machineId, @Var("paramKey") String paramKey);
|
}
|