Junjie
2026-04-25 ee53cfaffb30751dbade9008d482269d62147917
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.zy.asrs.service;
 
import com.zy.asrs.entity.DeviceDataLog;
 
import java.util.Map;
 
public interface DeviceLogReplayNormalizer {
 
    Object normalizeState(DeviceDataLog logItem);
 
    Map<String, Object> buildFrame(Long timestamp, Long sampleSeq, Map<String, Object> stateByStream);
 
    Map<String, Object> buildCompactFrame(Long timestamp, Long sampleSeq, Map<String, Object> stateByStream);
}