干燥机配套车间生产管理系统/云平台服务端
bsw215583320
2025-02-17 ff34638b445619d83740223514aa4de4a8e9a65f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package org.jeecg.modules.dry.service;
 
import org.jeecg.common.api.vo.Result;
import org.jeecg.modules.dry.vo.*;
 
public interface IDryRealTimeDataService {
    Result<?> realTimeDataHandle(RealTimeDataVo realTimeDataVo);
 
    Result<?> queryMachineRealTImeData(RealTimeDataVo realTimeDataVo);
 
    Result<?> sendSocketMsg(CommandMessageVo msgVo);
 
    Result<?> queryWorkshopStatistics(RealTimeDataVo realTimeDataVo);
 
    Result<?> statisticsDataHandle(StatisticsDataVo statsDataVo);
 
    /**
     * 通过实时数据收集处理故障信息
     * @param realTimeDataVo
     * @return
     */
    Result<?> fitFaultRecord(RealTimeDataVo realTimeDataVo);
 
    void fitFaultRecord(RealTimeDataParentVo realTimeDataParentVo);
 
    Result<?> realTimeDataHandle(RealTimeDataParentVo realTimeDataParentVo);
}