yangys
2024-03-31 53c8d3e3bd3596132b362f20e52aef380d493a84
1
2
3
4
5
6
7
8
9
10
11
12
13
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}&paramKey={paramKey}")
    @Address(source = ForestConfig.class)
    String perfEmployeeOnOff(@Var("machineId") String machineId, @Var("paramKey") String paramKey);
}