#
Junjie
9 天以前 dc3f9cc91759823ce59486f19b138be4b296a0f1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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;
}