Junjie
2026-04-27 0c336d5c5c0596691c9b33c08643c03486d47d5f
1
2
3
4
5
6
7
8
9
10
11
package com.zy.ai.service;
 
import com.zy.ai.domain.autotune.AutoTuneFlowTopologyItem;
import com.zy.ai.domain.autotune.AutoTuneStationRuntimeItem;
 
import java.util.List;
 
public interface FlowTopologySnapshotService {
 
    List<AutoTuneFlowTopologyItem> buildSnapshot(List<AutoTuneStationRuntimeItem> stationRuntimeSnapshot);
}