package com.zy.ai.domain.autotune;
|
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
@Data
|
public class AutoTuneRuleSnapshotItem implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
private String targetType;
|
|
private String targetKey;
|
|
private Integer minValue;
|
|
private Integer maxValue;
|
|
private Integer maxStep;
|
|
private Integer cooldownMinutes;
|
|
private Boolean dynamicMaxValue;
|
|
private String dynamicMaxSource;
|
|
private String note;
|
}
|