Junjie
2026-04-27 73a8fcbaaec22b972c7f52d9477271a246d17926
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.zy.ai.domain.autotune;
 
public enum AutoTuneJobStatus {
    RUNNING("running"),
    SUCCESS("success"),
    PARTIAL_SUCCESS("partial_success"),
    NO_CHANGE("no_change"),
    FAILED("failed"),
    REJECTED("rejected");
 
    private final String code;
 
    AutoTuneJobStatus(String code) {
        this.code = code;
    }
 
    public String getCode() {
        return code;
    }
}