Junjie
2026-04-27 10bdc4b6e9701befd1a83bccd2998dcc96cb2c43
1
2
3
4
5
6
7
8
9
10
11
package com.zy.ai.service;
 
import com.zy.ai.domain.autotune.AutoTuneApplyRequest;
import com.zy.ai.domain.autotune.AutoTuneApplyResult;
 
public interface AutoTuneApplyService {
 
    AutoTuneApplyResult apply(AutoTuneApplyRequest request);
 
    AutoTuneApplyResult rollbackLastSuccessfulJob(String reason);
}