yangys
2024-03-27 e48aa2ac8dea1be5db11c63edf0b912c4ad5ce65
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);
}