Junjie
8 天以前 3c1543a1049670c227755229a0305613442bcda8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.zy.ai.service;
 
import com.zy.ai.domain.autotune.AutoTuneRoutePressureSnapshot;
import com.zy.ai.domain.autotune.AutoTuneStationRuntimeItem;
import com.zy.ai.domain.autotune.AutoTuneTaskSnapshot;
import com.zy.asrs.entity.WrkMast;
 
import java.util.List;
 
public interface RoutePressureSnapshotService {
 
    AutoTuneRoutePressureSnapshot buildSnapshot(List<WrkMast> activeTasks,
                                                AutoTuneTaskSnapshot taskSnapshot,
                                                List<AutoTuneStationRuntimeItem> stationRuntimeSnapshot);
}