package com.zy.ai.domain.autotune;
|
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.util.List;
|
import java.util.Map;
|
|
@Data
|
public class AutoTuneTaskSnapshot implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
private Integer activeTaskCount;
|
|
private List<AutoTuneTaskDetailItem> stationLimitBlockedTasks;
|
|
private List<AutoTuneTaskDetailItem> outboundTaskSamples;
|
|
private Map<String, Integer> byTargetStation;
|
|
private Map<String, Integer> byBatch;
|
|
private Map<String, Integer> byStatus;
|
|
private Map<String, Integer> byCrn;
|
|
private Map<String, Integer> byDualCrn;
|
|
private Map<String, Integer> byIoType;
|
}
|